index.wxss 642 B

12345678910111213141516171819202122232425262728293031
  1. .ant-skeleton-avatar {
  2. width: 44px;
  3. height: 44px;
  4. border-radius: 4px;
  5. background: #eeeeee;
  6. display: inline-block;
  7. }
  8. .ant-skeleton-avatar-animate {
  9. background: linear-gradient(90deg, #eeeeee 25%, rgba(204, 204, 204, 0.6) 37%, #eeeeee 63%);
  10. background-size: 400% 100%;
  11. animation: ant-skeleton-loading 1.4s ease infinite;
  12. }
  13. .ant-skeleton-avatar-circle {
  14. border-radius: 50%;
  15. }
  16. .ant-skeleton-avatar-x-small {
  17. width: 40px;
  18. height: 40px;
  19. }
  20. .ant-skeleton-avatar-small {
  21. width: 44px;
  22. height: 44px;
  23. }
  24. .ant-skeleton-avatar-medium {
  25. width: 52px;
  26. height: 52px;
  27. }
  28. .ant-skeleton-avatar-large {
  29. width: 60px;
  30. height: 60px;
  31. }