mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
40 lines
931 B
SCSS
40 lines
931 B
SCSS
@import "./mixins/mixins.scss";
|
|
|
|
@include themes-mixin {
|
|
@include b(empty) {
|
|
@include once {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
@include e(icon) {
|
|
@include once {
|
|
transition: fill .3s $--n-ease-in-out-cubic-bezier;
|
|
width: 28px;
|
|
height: 28px;
|
|
font-size: 28px;
|
|
}
|
|
@include b(icon) {
|
|
fill: $--empty-icon-color;
|
|
stroke: $--empty-icon-color;
|
|
}
|
|
}
|
|
@include e(description) {
|
|
@include once {
|
|
font-size: 14px;
|
|
margin-top: 4px;
|
|
transition: color .3s $--n-ease-in-out-cubic-bezier;
|
|
}
|
|
color: $--empty-text-color;
|
|
}
|
|
@include e(extra) {
|
|
@include once {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
transition: color .3s $--n-ease-in-out-cubic-bezier;
|
|
margin-top: 16px;
|
|
}
|
|
color: $--empty-extra-text-color;
|
|
}
|
|
}
|
|
} |