2021-11-05 16:43:46 +01:00
|
|
|
select.dropdown {
|
|
|
|
border: 1px solid $gray;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 2px;
|
2021-11-08 12:26:21 +01:00
|
|
|
cursor: pointer;
|
2021-11-05 16:43:46 +01:00
|
|
|
|
|
|
|
&.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|