@1024pix/pix-ui 44.3.7 → 44.3.8

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.
@@ -45,4 +45,14 @@ $font-bold: 700;
45
45
  --pix-font-normal: 400;
46
46
  --pix-font-medium: 500;
47
47
  --pix-font-bold: 700;
48
+
49
+ // Private property, do not use directly
50
+ // See https://ui.pix.fr/?path=/docs/utiliser-pix-ui-design-tokens-typographie--docs
51
+ // stylelint-disable-next-line custom-property-pattern
52
+ --_pix-font-family-title: 'Nunito', Arial, sans-serif;
53
+
54
+ // Private property, do not use directly
55
+ // See https://ui.pix.fr/?path=/docs/utiliser-pix-ui-design-tokens-typographie--docs
56
+ // stylelint-disable-next-line custom-property-pattern
57
+ --_pix-font-family-body: 'Roboto', Arial, sans-serif;
48
58
  }
@@ -3,7 +3,9 @@
3
3
  // Placeholder pour permettre l'utilisation dans une classe css si jamais le tag html a trop de classe
4
4
  %-pix-title {
5
5
  font-weight: 700;
6
- font-family: 'Nunito', 'Arial', sans-serif;
6
+
7
+ // stylelint-disable-next-line custom-property-pattern
8
+ font-family: var(--_pix-font-family-title);
7
9
  }
8
10
 
9
11
  %pix-title-l,
@@ -78,7 +80,9 @@
78
80
 
79
81
  %-pix-body {
80
82
  font-weight: 400;
81
- font-family: 'Roboto', 'Arial', sans-serif;
83
+
84
+ // stylelint-disable-next-line custom-property-pattern
85
+ font-family: var(--_pix-font-family-body);
82
86
  }
83
87
 
84
88
  %pix-body-xs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/pix-ui",
3
- "version": "44.3.7",
3
+ "version": "44.3.8",
4
4
  "description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
5
5
  "keywords": [
6
6
  "ember-addon"