@linzjs/lui 21.44.5-0 → 21.45.0
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/CHANGELOG.md +7 -0
- package/dist/assets/icons/c_report.svg +1 -0
- package/dist/assets/svg-content.d.ts +1 -1
- package/dist/assets/svg-content.tsx +9 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/lui.css +10 -10
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +4 -0
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Elements/Forms/FormComponents/RadiosCheckboxes.scss +1 -1
- package/dist/scss/Global/GenericElements/Typography.scss +9 -9
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
////////////////////////////////////////////
|
|
16
16
|
|
|
17
17
|
html {
|
|
18
|
-
@include fonts.font-
|
|
18
|
+
@include fonts.font-light();
|
|
19
19
|
font-size: fonts.$base-font-size;
|
|
20
20
|
line-height: fonts.$base-line-height;
|
|
21
21
|
color: colors.$base-type-color;
|
|
@@ -114,7 +114,7 @@ h6,
|
|
|
114
114
|
|
|
115
115
|
h1,
|
|
116
116
|
.h1 {
|
|
117
|
-
@include fonts.font-
|
|
117
|
+
@include fonts.font-light();
|
|
118
118
|
font-size: toRem(44px);
|
|
119
119
|
|
|
120
120
|
& + p {
|
|
@@ -124,7 +124,7 @@ h1,
|
|
|
124
124
|
|
|
125
125
|
h2,
|
|
126
126
|
.h2 {
|
|
127
|
-
@include fonts.font-
|
|
127
|
+
@include fonts.font-light();
|
|
128
128
|
font-size: toRem(32px);
|
|
129
129
|
margin-top: spacing.$unit-xl; // 96px
|
|
130
130
|
|
|
@@ -173,13 +173,13 @@ h6,
|
|
|
173
173
|
|
|
174
174
|
p,
|
|
175
175
|
.p {
|
|
176
|
-
@include fonts.font-
|
|
176
|
+
@include fonts.font-light();
|
|
177
177
|
font-size: toRem(16px);
|
|
178
178
|
margin-top: spacing.$unit-lg; //64px
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
p.lui-small {
|
|
182
|
-
@include fonts.font-
|
|
182
|
+
@include fonts.font-light();
|
|
183
183
|
font-size: toRem(13px);
|
|
184
184
|
line-height: toRem(20px);
|
|
185
185
|
margin-top: spacing.$unit-lg; //64px
|
|
@@ -194,7 +194,7 @@ p.lui-small {
|
|
|
194
194
|
.LuiBeta-fonts220222 {
|
|
195
195
|
h1,
|
|
196
196
|
.h1 {
|
|
197
|
-
@include fonts.font-
|
|
197
|
+
@include fonts.font-light();
|
|
198
198
|
@include fluidType--size(34px, 44px, $breakpoint-sm, $breakpoint-xl);
|
|
199
199
|
@include fluidType--lineHeight(44px, 52px, $breakpoint-sm, $breakpoint-xl);
|
|
200
200
|
|
|
@@ -205,7 +205,7 @@ p.lui-small {
|
|
|
205
205
|
|
|
206
206
|
h2,
|
|
207
207
|
.h2 {
|
|
208
|
-
@include fonts.font-
|
|
208
|
+
@include fonts.font-light();
|
|
209
209
|
@include fluidType--size(28px, 32px, $breakpoint-sm, $breakpoint-xl);
|
|
210
210
|
@include fluidType--lineHeight(36px, 40px, $breakpoint-sm, $breakpoint-xl);
|
|
211
211
|
margin-top: spacing.$unit-xl; // 96px
|
|
@@ -262,13 +262,13 @@ p.lui-small {
|
|
|
262
262
|
|
|
263
263
|
p,
|
|
264
264
|
.p {
|
|
265
|
-
@include fonts.font-
|
|
265
|
+
@include fonts.font-light();
|
|
266
266
|
font-size: toRem(16px);
|
|
267
267
|
margin-top: spacing.$unit-lg; //64px
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
p.lui-small {
|
|
271
|
-
@include fonts.font-
|
|
271
|
+
@include fonts.font-light();
|
|
272
272
|
font-size: toRem(13px);
|
|
273
273
|
line-height: toRem(20px);
|
|
274
274
|
margin-top: spacing.$unit-lg; //64px
|
package/package.json
CHANGED