index.less 423 B

12345678910111213141516171819202122
  1. @import '../variable.less';
  2. .@{skeletonPrefix}-paragraph {
  3. &-animate {
  4. .@{skeletonPrefix}-paragraph-row {
  5. .skeleton-animation();
  6. }
  7. }
  8. &-row {
  9. width: 100%;
  10. height: 30 * @rpx;
  11. margin-bottom: 24 * @rpx;
  12. border-radius: @default-radius;
  13. background: @skeleton-fill;
  14. &:nth-last-of-type(1) {
  15. margin-bottom: 0;
  16. &:not(:nth-of-type(1)) {
  17. width: 60%;
  18. }
  19. }
  20. }
  21. }