website-utilities 1.0.293 → 1.0.295
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 +5 -17
- package/package.json +1 -1
package/index.scss
CHANGED
|
@@ -9,8 +9,6 @@ License
|
|
|
9
9
|
This library written by Torben Sickert stand under a creative commons naming
|
|
10
10
|
3.0 unported license. See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
11
11
|
endregion */
|
|
12
|
-
@use "sass:string";
|
|
13
|
-
|
|
14
12
|
@use "fonts";
|
|
15
13
|
@use "variables" as v;
|
|
16
14
|
|
|
@@ -54,7 +52,7 @@ endregion */
|
|
|
54
52
|
.wu {
|
|
55
53
|
margin: 0;
|
|
56
54
|
|
|
57
|
-
font-family: var(--w-font-family,
|
|
55
|
+
font-family: var(--w-font-family, v.$typography-font-family);
|
|
58
56
|
font-size: 14px;
|
|
59
57
|
}
|
|
60
58
|
|
|
@@ -76,7 +74,7 @@ endregion */
|
|
|
76
74
|
.wu h5,
|
|
77
75
|
.wu-h6,
|
|
78
76
|
.wu h6 {
|
|
79
|
-
font-family: var(--w-font-family,
|
|
77
|
+
font-family: var(--w-font-family, v.$typography-font-family);
|
|
80
78
|
line-height: 1.1;
|
|
81
79
|
}
|
|
82
80
|
|
|
@@ -85,10 +83,7 @@ endregion */
|
|
|
85
83
|
.wu-h2,
|
|
86
84
|
.wu h2 {
|
|
87
85
|
font-family:
|
|
88
|
-
var(
|
|
89
|
-
--w-font-family-headline,
|
|
90
|
-
string.quote(v.$typography-font-family-headline)
|
|
91
|
-
);
|
|
86
|
+
var(--w-font-family-headline, v.$typography-font-family-headline);
|
|
92
87
|
font-weight: normal;
|
|
93
88
|
font-size: 3em;
|
|
94
89
|
}
|
|
@@ -145,11 +140,7 @@ a.wu-a:visited,
|
|
|
145
140
|
.wu .icon,
|
|
146
141
|
.wu-icon-social,
|
|
147
142
|
.wu .icon-social {
|
|
148
|
-
font-family:
|
|
149
|
-
var(
|
|
150
|
-
--w-font-family-social,
|
|
151
|
-
string.quote(v.$typography-font-family-social)
|
|
152
|
-
);
|
|
143
|
+
font-family: var(--w-font-family-social, v.$typography-font-family-social);
|
|
153
144
|
font-style: normal;
|
|
154
145
|
font-weight: 400;
|
|
155
146
|
|
|
@@ -170,10 +161,7 @@ a.wu-a:visited,
|
|
|
170
161
|
|
|
171
162
|
&::before {
|
|
172
163
|
font-family:
|
|
173
|
-
var(
|
|
174
|
-
--w-font-family-social,
|
|
175
|
-
string.quote(v.$typography-font-family-social)
|
|
176
|
-
);
|
|
164
|
+
var(--w-font-family-social, v.$typography-font-family-social);
|
|
177
165
|
|
|
178
166
|
display: inline-block;
|
|
179
167
|
|