index.wxss 336 B

123456789101112
  1. .ant-skeleton-input {
  2. width: 200px;
  3. height: 20px;
  4. border-radius: 4px;
  5. background: #eeeeee;
  6. display: inline-block;
  7. }
  8. .ant-skeleton-input-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. }