index.less 625 B

1234567891011121314151617181920212223242526272829303132
  1. @import '../style/var';
  2. .van-empty {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. box-sizing: border-box;
  8. padding: @empty-padding;
  9. &__image {
  10. width: @empty-image-size;
  11. height: @empty-image-size;
  12. img {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. }
  17. &__description {
  18. margin-top: @empty-description-margin-top;
  19. padding: @empty-description-padding;
  20. color: @empty-description-color;
  21. font-size: @empty-description-font-size;
  22. line-height: @empty-description-line-height;
  23. }
  24. &__bottom {
  25. margin-top: @empty-bottom-margin-top;
  26. }
  27. }