32 lines
472 B
SCSS
32 lines
472 B
SCSS
.select-wrapper,
|
|
textarea,
|
|
[type="email"],
|
|
[type="password"],
|
|
[type="search"],
|
|
[type="tel"],
|
|
[type="text"] {
|
|
border: 0;
|
|
box-shadow: $box-shadow-light;
|
|
background-color: $gray-light;
|
|
padding: 8px;
|
|
width: 100%;
|
|
|
|
.dark & {
|
|
box-shadow: none;
|
|
background-color: $white;
|
|
}
|
|
}
|
|
|
|
.select-wrapper {
|
|
padding: 7px 6px 6px;
|
|
width: 100%;
|
|
|
|
select {
|
|
outline-offset: 6px;
|
|
border: 0;
|
|
background: transparent;
|
|
padding: 6px 0;
|
|
width: 100%;
|
|
}
|
|
}
|