11 lines
213 B
SCSS
11 lines
213 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;
|
||
|
}
|
||
|
}
|