29 lines
545 B
SCSS
29 lines
545 B
SCSS
@import '../variables';
|
|
|
|
.options{
|
|
|
|
height: min-content;
|
|
//margin: 3%;
|
|
// margin: 0 30px;
|
|
|
|
& > input{
|
|
display: block;
|
|
margin: 20px 0;
|
|
margin-left: 30px;
|
|
margin-top: 10px;
|
|
background-color: $background-light;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
& > label{
|
|
text-align: left;
|
|
margin: 10px;
|
|
margin-top: 10px;
|
|
margin-bottom: 0;
|
|
margin-left: 30px;
|
|
font-weight: 800;
|
|
}
|
|
} |