|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- //
- // Utility classes for typography
- //
-
- // stylelint-disable primer/selector-no-utility, primer/no-override
-
- .fs-1 {
- @include fs-1;
- }
-
- .fs-2 {
- @include fs-2;
- }
-
- .fs-3 {
- @include fs-3;
- }
-
- .fs-4 {
- @include fs-4;
- }
-
- .fs-5 {
- @include fs-5;
- }
-
- .fs-6 {
- @include fs-6;
- }
-
- .fs-7 {
- @include fs-7;
- }
-
- .fs-8 {
- @include fs-8;
- }
-
- .fs-9 {
- @include fs-9;
- }
-
- .fs-10 {
- @include fs-10;
- }
-
- .fw-300 {
- font-weight: 300 !important;
- }
-
- .fw-400 {
- font-weight: 400 !important;
- }
-
- .fw-500 {
- font-weight: 500 !important;
- }
-
- .fw-700 {
- font-weight: 700 !important;
- }
-
- .lh-0 {
- line-height: 0 !important;
- }
-
- .lh-default {
- line-height: $body-line-height;
- }
-
- .lh-tight {
- line-height: $body-heading-line-height;
- }
-
- .ls-5 {
- letter-spacing: 0.05em !important;
- }
-
- .ls-10 {
- letter-spacing: 0.1em !important;
- }
-
- .ls-0 {
- letter-spacing: 0 !important;
- }
-
- .text-uppercase {
- text-transform: uppercase !important;
- }
-
- // stylelint-enable primer/selector-no-utility
|