42 lines
857 B
SCSS
42 lines
857 B
SCSS
![]() |
select.dropdown {
|
||
|
border: 1px solid $gray;
|
||
|
box-sizing: border-box;
|
||
|
border-radius: 2px;
|
||
|
|
||
|
&.large {
|
||
|
width: 229px;
|
||
|
height: 40px;
|
||
|
|
||
|
option {
|
||
|
font-size: 16px;
|
||
|
line-height: 20px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
color: $black;
|
||
|
}
|
||
|
}
|
||
|
&.medium {
|
||
|
width: 229px;
|
||
|
height: 32px;
|
||
|
|
||
|
option {
|
||
|
font-size: 14px;
|
||
|
line-height: 18px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
}
|
||
|
&.small {
|
||
|
width: 229px;
|
||
|
height: 26px;
|
||
|
|
||
|
option {
|
||
|
font-size: 14px;
|
||
|
line-height: 18px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
color: $black;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|