mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
36 lines
707 B
SCSS
36 lines
707 B
SCSS
@import './mixins/mixins.scss';
|
|
@import './theme/default.scss';
|
|
|
|
@include b(select) {
|
|
display: inline-block;
|
|
border: none;
|
|
outline: none;
|
|
width: 100%;
|
|
color: $select-text-color;
|
|
font-family: $default-font-family;
|
|
text-align: start;
|
|
vertical-align: baseline;
|
|
@include m(small-size) {
|
|
line-height: 28px;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
}
|
|
@include m(medium-size) {
|
|
line-height: 34px;
|
|
height: 34px;
|
|
font-size: 14px;
|
|
}
|
|
@include m(large-size) {
|
|
line-height: 40px;
|
|
height: 40px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.n-select-detached-content-container {
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
@include b(select-menu) {
|
|
@include fade-in-scale-up-transition(select-menu);
|
|
} |