font.scss 353 B

123456789101112131415161718192021222324252627282930313233343536
  1. @for $i from 2 to 100 {
  2. .fs-#{$i} {
  3. font-size: #{$i}rpx;
  4. }
  5. .lh-#{$i} {
  6. line-height: #{$i}rpx;
  7. }
  8. }
  9. .fs-0 {
  10. font-size: 0px;
  11. }
  12. .fw-500 {
  13. font-weight: 500;
  14. }
  15. .fw-600 {
  16. font-weight: 600;
  17. }
  18. .fw-bold {
  19. font-weight: bold;
  20. }
  21. .lh-0 {
  22. line-height: 0px;
  23. }
  24. .lh-normal {
  25. line-height: normal;
  26. }
  27. .text-center {
  28. text-align: center;
  29. }