mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
33 lines
625 B
Plaintext
33 lines
625 B
Plaintext
@import '../style/var';
|
|
|
|
.van-empty {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
padding: @empty-padding;
|
|
|
|
&__image {
|
|
width: @empty-image-size;
|
|
height: @empty-image-size;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
&__description {
|
|
margin-top: @empty-description-margin-top;
|
|
padding: @empty-description-padding;
|
|
color: @empty-description-color;
|
|
font-size: @empty-description-font-size;
|
|
line-height: @empty-description-line-height;
|
|
}
|
|
|
|
&__bottom {
|
|
margin-top: @empty-bottom-margin-top;
|
|
}
|
|
}
|