naive-ui/styles/Empty.scss

34 lines
759 B
SCSS
Raw Normal View History

@import "./mixins/mixins.scss";
2019-11-26 15:26:28 +08:00
@include themes-mixin {
@include b(empty) {
2019-11-26 15:26:28 +08:00
@include once {
display: flex;
flex-direction: column;
align-items: center;
}
@include e(icon) {
2019-11-26 15:26:28 +08:00
@include once {
transition: fill .3s $default-cubic-bezier;
width: 40px;
height: 40px;
}
fill: $--empty-icon-fill;
}
@include e(description) {
2019-11-26 15:26:28 +08:00
@include once {
margin-top: 8px;
transition: color .3s $default-cubic-bezier;
}
color: $--empty-text-color;
}
@include e(extra) {
2019-11-26 15:26:28 +08:00
@include once {
text-align: center;
transition: color .3s $default-cubic-bezier;
margin-top: 16px;
}
color: $--empty-extra-text-color;
}
}
}