website-utilities 1.0.291 → 1.0.293
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.scss +16 -4
- package/package.json +1 -1
package/index.scss
CHANGED
|
@@ -76,7 +76,7 @@ endregion */
|
|
|
76
76
|
.wu h5,
|
|
77
77
|
.wu-h6,
|
|
78
78
|
.wu h6 {
|
|
79
|
-
font-family: var(--w-font-family, v.$typography-font-family);
|
|
79
|
+
font-family: var(--w-font-family, string.quote(v.$typography-font-family));
|
|
80
80
|
line-height: 1.1;
|
|
81
81
|
}
|
|
82
82
|
|
|
@@ -84,7 +84,11 @@ endregion */
|
|
|
84
84
|
.wu h1,
|
|
85
85
|
.wu-h2,
|
|
86
86
|
.wu h2 {
|
|
87
|
-
font-family:
|
|
87
|
+
font-family:
|
|
88
|
+
var(
|
|
89
|
+
--w-font-family-headline,
|
|
90
|
+
string.quote(v.$typography-font-family-headline)
|
|
91
|
+
);
|
|
88
92
|
font-weight: normal;
|
|
89
93
|
font-size: 3em;
|
|
90
94
|
}
|
|
@@ -141,7 +145,11 @@ a.wu-a:visited,
|
|
|
141
145
|
.wu .icon,
|
|
142
146
|
.wu-icon-social,
|
|
143
147
|
.wu .icon-social {
|
|
144
|
-
font-family:
|
|
148
|
+
font-family:
|
|
149
|
+
var(
|
|
150
|
+
--w-font-family-social,
|
|
151
|
+
string.quote(v.$typography-font-family-social)
|
|
152
|
+
);
|
|
145
153
|
font-style: normal;
|
|
146
154
|
font-weight: 400;
|
|
147
155
|
|
|
@@ -161,7 +169,11 @@ a.wu-a:visited,
|
|
|
161
169
|
-moz-osx-font-smoothing: grayscale;
|
|
162
170
|
|
|
163
171
|
&::before {
|
|
164
|
-
font-family:
|
|
172
|
+
font-family:
|
|
173
|
+
var(
|
|
174
|
+
--w-font-family-social,
|
|
175
|
+
string.quote(v.$typography-font-family-social)
|
|
176
|
+
);
|
|
165
177
|
|
|
166
178
|
display: inline-block;
|
|
167
179
|
|