podcastartgenerator/site/resources/scss/components/_auth.scss

33 lines
558 B
SCSS
Raw Normal View History

.authbox {
background: $bg-color-1;
padding: 15px;
border-radius: 10px;
transition: 0.3s;
border: 1px solid $bg-color-1;
&.button[type=submit] {
background: $color-primary;
}
}
2023-12-15 01:53:04 -05:00
.theme-light {
.authbox {
background: $body-bg-light;
border-color: darken($body-bg-light, 10%);
}
}
2023-12-17 17:31:07 -05:00
img.avatar_img {
max-width: 100%;
height: auto;
}
2023-12-18 10:44:09 -05:00
label[for=avatar] {
img {
&:hover {
cursor:pointer;
}
}
}
input[name=avatar] {
&.sr-only {
display: none;
}
}