2019-11-24 10:49:39 +08:00
|
|
|
@import "./mixins/mixins.scss";
|
|
|
|
|
2019-11-26 15:26:28 +08:00
|
|
|
@include themes-mixin {
|
2019-11-24 10:49:39 +08:00
|
|
|
@include b(empty) {
|
2019-11-26 15:26:28 +08:00
|
|
|
@include once {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2019-11-24 10:49:39 +08:00
|
|
|
@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;
|
2019-11-24 10:49:39 +08:00
|
|
|
}
|
|
|
|
@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;
|
2019-11-24 10:49:39 +08:00
|
|
|
}
|
|
|
|
@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;
|
2019-11-24 10:49:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|