24 lines
324 B
SCSS
24 lines
324 B
SCSS
|
.select-wrapper,
|
||
|
textarea,
|
||
|
[type="email"],
|
||
|
[type="password"],
|
||
|
[type="search"],
|
||
|
[type="tel"],
|
||
|
[type="text"] {
|
||
|
padding: 8px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.select-wrapper {
|
||
|
padding: 7px 6px 6px;
|
||
|
width: 100%;
|
||
|
|
||
|
select {
|
||
|
outline-offset: 6px;
|
||
|
border: 0;
|
||
|
background: transparent;
|
||
|
padding: 6px 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|