naive-ui/styles/Empty.scss

34 lines
783 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 $--n-ease-in-out-cubic-bezier;
2019-11-26 15:26:28 +08:00
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 $--n-ease-in-out-cubic-bezier;
2019-11-26 15:26:28 +08:00
}
color: $--empty-text-color;
}
@include e(extra) {
2019-11-26 15:26:28 +08:00
@include once {
text-align: center;
transition: color .3s $--n-ease-in-out-cubic-bezier;
2019-11-26 15:26:28 +08:00
margin-top: 16px;
}
color: $--empty-extra-text-color;
}
}
}