| 123456789101112131415161718192021222324252627282930313233343536 |
- @for $i from 2 to 100 {
- .fs-#{$i} {
- font-size: #{$i}rpx;
- }
- .lh-#{$i} {
- line-height: #{$i}rpx;
- }
- }
- .fs-0 {
- font-size: 0px;
- }
- .fw-500 {
- font-weight: 500;
- }
- .fw-600 {
- font-weight: 600;
- }
- .fw-bold {
- font-weight: bold;
- }
- .lh-0 {
- line-height: 0px;
- }
- .lh-normal {
- line-height: normal;
- }
- .text-center {
- text-align: center;
- }
|