17 lines
338 B
SCSS
17 lines
338 B
SCSS
.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;
|
|
}
|
|
}
|
|
.theme-light {
|
|
.authbox {
|
|
background: $body-bg-light;
|
|
border-color: darken($body-bg-light, 10%);
|
|
}
|
|
}
|