30 lines
410 B
SCSS
30 lines
410 B
SCSS
@import '~@/styles/vars';
|
|
|
|
input,
|
|
select {
|
|
// background-color: $bg-primary;
|
|
|
|
/*
|
|
&::placeholder {
|
|
color: $fg-primary;
|
|
opacity: 1;
|
|
}
|
|
*/
|
|
border: solid thin $color1;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
select { background-color: white; }
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
label {
|
|
display: inline-block;
|
|
margin: .5rem 0;
|
|
min-width: 10em;
|
|
}
|
|
}
|