|
19 | 19 | $pairing-md: map-get($mktg-header-pairings, nth($sizes, 2));
|
20 | 20 | $pairing-lg: map-get($mktg-header-pairings, nth($sizes, 3));
|
21 | 21 |
|
22 |
| - font-size: map-get($pairing, "size") !important; |
23 |
| - line-height: map-get($pairing, "lh") !important; |
24 |
| - @if (map-get($pairing, "size") >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; } |
| 22 | + font-size: map-get($pairing, 'size') !important; |
| 23 | + line-height: map-get($pairing, 'lh') !important; |
| 24 | + @if (map-get($pairing, 'size') >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; } |
25 | 25 |
|
26 | 26 | @if (nth($sizes, 1) != nth($sizes, 2)) {
|
27 | 27 | @include breakpoint(md) {
|
28 |
| - font-size: map-get($pairing-md, "size") !important; |
29 |
| - line-height: map-get($pairing-md, "lh") !important; |
| 28 | + font-size: map-get($pairing-md, 'size') !important; |
| 29 | + line-height: map-get($pairing-md, 'lh') !important; |
30 | 30 |
|
31 |
| - @if (map-get($pairing-md, "size") >= $mktg-header-spacing-threshold and map-get($pairing, "size") < $mktg-header-spacing-threshold) { |
| 31 | + @if (map-get($pairing-md, 'size') >= $mktg-header-spacing-threshold and map-get($pairing, 'size') < $mktg-header-spacing-threshold) { |
32 | 32 | letter-spacing: $mktg-header-spacing-large !important;
|
33 | 33 | }
|
34 | 34 |
|
35 |
| - @if (map-get($pairing-md, "size") >= $mktg-header-weight-threshold and map-get($pairing, "size") < $mktg-header-weight-threshold) { |
| 35 | + @if (map-get($pairing-md, 'size') >= $mktg-header-weight-threshold and map-get($pairing, 'size') < $mktg-header-weight-threshold) { |
36 | 36 | font-weight: $mktg-header-weight-large !important;
|
37 | 37 | }
|
38 | 38 | }
|
39 | 39 | }
|
40 | 40 |
|
41 | 41 | @if (nth($sizes, 2) != nth($sizes, 3)) {
|
42 | 42 | @include breakpoint(lg) {
|
43 |
| - font-size: map-get($pairing-lg, "size") !important; |
44 |
| - line-height: map-get($pairing-lg, "lh") !important; |
| 43 | + font-size: map-get($pairing-lg, 'size') !important; |
| 44 | + line-height: map-get($pairing-lg, 'lh') !important; |
45 | 45 |
|
46 |
| - @if (map-get($pairing-lg, "size") >= $mktg-header-spacing-threshold and map-get($pairing-md, "size") < $mktg-header-spacing-threshold) { |
| 46 | + @if (map-get($pairing-lg, 'size') >= $mktg-header-spacing-threshold and map-get($pairing-md, 'size') < $mktg-header-spacing-threshold) { |
47 | 47 | letter-spacing: $mktg-header-spacing-large !important;
|
48 | 48 | }
|
49 | 49 |
|
50 |
| - @if (map-get($pairing-lg, "size") >= $mktg-header-weight-threshold and map-get($pairing-md, "size") < $mktg-header-weight-threshold) { |
| 50 | + @if (map-get($pairing-lg, 'size') >= $mktg-header-weight-threshold and map-get($pairing-md, 'size') < $mktg-header-weight-threshold) { |
51 | 51 | font-weight: $mktg-header-weight-large !important;
|
52 | 52 | }
|
53 | 53 | }
|
|
73 | 73 | $pairing-md: map-get($mktg-body-pairings, nth($sizes, 2));
|
74 | 74 | $pairing-lg: map-get($mktg-body-pairings, nth($sizes, 3));
|
75 | 75 |
|
76 |
| - font-size: map-get($pairing, "size") !important; |
77 |
| - line-height: map-get($pairing, "lh") !important; |
78 |
| - @if (map-get($pairing, "size") >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; } |
79 |
| - @if (map-get($pairing, "size") >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; } |
| 76 | + font-size: map-get($pairing, 'size') !important; |
| 77 | + line-height: map-get($pairing, 'lh') !important; |
| 78 | + @if (map-get($pairing, 'size') >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; } |
| 79 | + @if (map-get($pairing, 'size') >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; } |
80 | 80 |
|
81 | 81 | @if (nth($sizes, 1) != nth($sizes, 2)) {
|
82 | 82 | @include breakpoint(md) {
|
83 |
| - font-size: map-get($pairing-md, "size") !important; |
84 |
| - line-height: map-get($pairing-md, "lh") !important; |
| 83 | + font-size: map-get($pairing-md, 'size') !important; |
| 84 | + line-height: map-get($pairing-md, 'lh') !important; |
85 | 85 |
|
86 |
| - @if (map-get($pairing-md, "size") >= $mktg-body-spacing-threshold and map-get($pairing, "size") < $mktg-body-spacing-threshold) { |
| 86 | + @if (map-get($pairing-md, 'size') >= $mktg-body-spacing-threshold and map-get($pairing, 'size') < $mktg-body-spacing-threshold) { |
87 | 87 | letter-spacing: $mktg-body-spacing-large !important;
|
88 | 88 | }
|
89 | 89 |
|
90 |
| - @if (map-get($pairing-md, "size") >= $mktg-body-weight-threshold and map-get($pairing, "size") < $mktg-body-weight-threshold) { |
| 90 | + @if (map-get($pairing-md, 'size') >= $mktg-body-weight-threshold and map-get($pairing, 'size') < $mktg-body-weight-threshold) { |
91 | 91 | font-weight: $font-weight-medium;
|
92 | 92 | }
|
93 | 93 | }
|
94 | 94 | }
|
95 | 95 |
|
96 | 96 | @if (nth($sizes, 2) != nth($sizes, 3)) {
|
97 | 97 | @include breakpoint(lg) {
|
98 |
| - font-size: map-get($pairing-lg, "size") !important; |
99 |
| - line-height: map-get($pairing-lg, "lh") !important; |
| 98 | + font-size: map-get($pairing-lg, 'size') !important; |
| 99 | + line-height: map-get($pairing-lg, 'lh') !important; |
100 | 100 |
|
101 |
| - @if (map-get($pairing-lg, "size") >= $mktg-body-spacing-threshold and map-get($pairing-md, "size") < $mktg-body-spacing-threshold) { |
| 101 | + @if (map-get($pairing-lg, 'size') >= $mktg-body-spacing-threshold and map-get($pairing-md, 'size') < $mktg-body-spacing-threshold) { |
102 | 102 | letter-spacing: $mktg-body-spacing-large !important;
|
103 | 103 | }
|
104 | 104 |
|
105 |
| - @if (map-get($pairing-lg, "size") >= $mktg-body-weight-threshold and map-get($pairing-md, "size") < $mktg-body-weight-threshold) { |
| 105 | + @if (map-get($pairing-lg, 'size') >= $mktg-body-weight-threshold and map-get($pairing-md, 'size') < $mktg-body-weight-threshold) { |
106 | 106 | font-weight: $font-weight-medium;
|
107 | 107 | }
|
108 | 108 | }
|
|
0 commit comments