@7shifts/sous-chef 3.43.3 → 3.44.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/dist/index.css +24 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Proxima Nova";
|
|
3
|
+
src: url("https://cdn.7shifts.com/fonts/proximaNova-semibold.eot");
|
|
4
|
+
src: url("https://cdn.7shifts.com/fonts/proximaNova-semibold.eot?#iefix") format("embedded-opentype"), url("https://cdn.7shifts.com/fonts/proximaNova-semibold.woff") format("woff"), url("https://cdn.7shifts.com/fonts/proximaNova-semibold.ttf") format("truetype"), url("https://cdn.7shifts.com/fonts/proximaNova-semibold.svg#ProximaNova-Semibold") format("svg");
|
|
5
|
+
font-weight: 600;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
/* Preload the font */
|
|
8
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
9
|
+
}
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: "Proxima Nova";
|
|
12
|
+
src: url("https://cdn.7shifts.com/fonts/ProximaNova-Regular.eot");
|
|
13
|
+
src: url("https://cdn.7shifts.com/fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("https://cdn.7shifts.com/fonts/ProximaNova-Regular.woff") format("woff"), url("https://cdn.7shifts.com/fonts/ProximaNova-Regular.ttf") format("truetype"), url("https://cdn.7shifts.com/fonts/ProximaNova-Regular.svg#proxima_nova_rgregular") format("svg");
|
|
14
|
+
font-weight: normal;
|
|
15
|
+
font-style: normal;
|
|
16
|
+
/* Preload the font */
|
|
17
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
18
|
+
}
|
|
1
19
|
:root {
|
|
2
20
|
--font-family-brand: "Proxima Nova", sans-serif;
|
|
3
21
|
--font-family-body: "Proxima Nova", sans-serif;
|
|
@@ -129,6 +147,12 @@
|
|
|
129
147
|
--z-index-tooltip: 300;
|
|
130
148
|
--z-index-portal: 9999;
|
|
131
149
|
}
|
|
150
|
+
body {
|
|
151
|
+
font-family: var(--font-family-brand);
|
|
152
|
+
font-size: var(--font-size-200);
|
|
153
|
+
line-height: var(--font-line-height-200);
|
|
154
|
+
font-weight: var(--p-font-weight-normal);
|
|
155
|
+
}
|
|
132
156
|
._OINV1 {
|
|
133
157
|
display: flex;
|
|
134
158
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import './foundation/tokens/typography/_typography-tokens.scss';
|
|
2
2
|
import './foundation/tokens/color/_color-tokens.scss';
|
|
3
3
|
import './foundation/tokens/zindex/_z-index-tokens.scss';
|
|
4
|
+
import './foundation/_initital-setup.scss';
|
|
4
5
|
export * from './foundation/tokens/color/color-constants';
|
|
5
6
|
export * from './foundation/tokens/zindex/z-index-constants';
|
|
6
7
|
export * from './core';
|