@ambita/design-system 6.1.5-751.0 → 6.1.5-771.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.
@@ -215,7 +215,7 @@
215
215
  @mixin dropdown-empty($padding-y: 8px, $padding-x: 8px) {
216
216
  padding: $padding-y $padding-x;
217
217
  text-align: center;
218
- font-size: 16px;
218
+ font-size: var(--font-size-xs);
219
219
  color: $text-body;
220
220
  }
221
221
 
@@ -236,7 +236,7 @@
236
236
  */
237
237
  @mixin dropdown-label($padding-y: 8px, $padding-x: 12px) {
238
238
  padding: $padding-y $padding-x;
239
- font-size: 14px;
239
+ font-size: var(--font-size-xxs);
240
240
  font-weight: 600;
241
241
  color: $text-body;
242
242
  background: $dropdown-label-bg;
@@ -456,7 +456,7 @@
456
456
 
457
457
  /* Heading XXL Display - PT Serif, 50px, weight 400, line-height 54px */
458
458
  @mixin heading-xxl-display {
459
- font-family: var(--font-family-display);
459
+ font-family: $font-family-display-serif;
460
460
  font-size: var(--font-size-xxl);
461
461
  font-weight: var(--font-weight-regular);
462
462
  line-height: var(--font-line-height-xxxl);
@@ -472,7 +472,7 @@
472
472
 
473
473
  /* Heading XL Display - PT Serif, 30px, weight 400, line-height 34px */
474
474
  @mixin heading-xl-display {
475
- font-family: var(--font-family-display);
475
+ font-family: $font-family-display-serif;
476
476
  font-size: var(--font-size-xl);
477
477
  font-weight: var(--font-weight-regular);
478
478
  line-height: var(--font-line-height-xxl);
@@ -26,6 +26,8 @@
26
26
  TYPOGRAPHY TOKENS
27
27
  ============================================================================ */
28
28
 
29
+ $font-size-xs: var(--font-size-xs);
30
+ $font-size-xxs: var(--font-size-xxs);
29
31
  $font-family-sans-serif: var(--font-family-sans-serif) "sans-serif";
30
32
  $font-family-display-serif: var(--font-family-display-serif);
31
33