This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
.nut-theme-dark {
.nut-empty {
background: $dark-background;
}
}
.nut-empty {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: $empty-padding;
&__box {
width: $empty-image-size;
height: $empty-image-size;
.img {
width: 100%;
height: 100%;
}
// 兼容小程序标签和img-slot
image {
width: 100%;
height: 100%;
}
}
&__description {
padding: $empty-description-padding;
margin-top: $empty-description-margin-top;
font-size: $empty-description-font-size;
line-height: $empty-description-line-height;
color: $empty-description-color;
}
}