@alfalab/core-components-vars 9.1.0 → 9.2.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/package.json +1 -1
- package/typography.css +70 -0
package/package.json
CHANGED
package/typography.css
CHANGED
|
@@ -353,6 +353,76 @@
|
|
|
353
353
|
font-weight: 400;
|
|
354
354
|
}
|
|
355
355
|
|
|
356
|
+
@define-mixin promo-mobile_large {
|
|
357
|
+
font-size: 30px;
|
|
358
|
+
line-height: 36px;
|
|
359
|
+
font-weight: 400;
|
|
360
|
+
font-feature-settings: 'ss01';
|
|
361
|
+
font-family: var(--font-family-styrene);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
@define-mixin promo-mobile_medium {
|
|
365
|
+
font-size: 26px;
|
|
366
|
+
line-height: 32px;
|
|
367
|
+
font-weight: 400;
|
|
368
|
+
font-feature-settings: 'ss01';
|
|
369
|
+
font-family: var(--font-family-styrene);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@define-mixin promo-mobile_small {
|
|
373
|
+
font-size: 20px;
|
|
374
|
+
line-height: 28px;
|
|
375
|
+
font-weight: 400;
|
|
376
|
+
font-feature-settings: 'ss01';
|
|
377
|
+
font-family: var(--font-family-styrene);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
@define-mixin promo-mobile_xlarge {
|
|
381
|
+
font-size: 34px;
|
|
382
|
+
line-height: 40px;
|
|
383
|
+
font-weight: 400;
|
|
384
|
+
font-feature-settings: 'ss01';
|
|
385
|
+
font-family: var(--font-family-styrene);
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
@define-mixin promo-mobile_xsmall {
|
|
389
|
+
font-size: 16px;
|
|
390
|
+
line-height: 20px;
|
|
391
|
+
font-weight: 400;
|
|
392
|
+
font-feature-settings: 'ss01';
|
|
393
|
+
font-family: var(--font-family-styrene);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
@define-mixin promo-system-mobile_large {
|
|
397
|
+
font-size: 30px;
|
|
398
|
+
line-height: 36px;
|
|
399
|
+
font-weight: 400;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
@define-mixin promo-system-mobile_medium {
|
|
403
|
+
font-size: 26px;
|
|
404
|
+
line-height: 32px;
|
|
405
|
+
font-weight: 400;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@define-mixin promo-system-mobile_small {
|
|
409
|
+
font-size: 20px;
|
|
410
|
+
line-height: 28px;
|
|
411
|
+
font-weight: 400;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
@define-mixin promo-system-mobile_xlarge {
|
|
415
|
+
font-size: 34px;
|
|
416
|
+
line-height: 40px;
|
|
417
|
+
font-weight: 400;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
@define-mixin promo-system-mobile_xsmall {
|
|
421
|
+
font-size: 16px;
|
|
422
|
+
line-height: 20px;
|
|
423
|
+
font-weight: 400;
|
|
424
|
+
}
|
|
425
|
+
|
|
356
426
|
@define-mixin promo-system_large {
|
|
357
427
|
font-size: 40px;
|
|
358
428
|
line-height: 48px;
|