2023-12-14 12:33:03 -05:00
|
|
|
.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;
|
|
|
|
}
|