@youngonesworks/ui 0.1.121 → 0.1.122

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.
@@ -81,7 +81,7 @@
81
81
  box-sizing: border-box;
82
82
  -ms-overflow-style: scrollbar;
83
83
  -webkit-tap-highlight-color: rgba(#000, 0);
84
- font-family: "Gotham", sans-serif;
84
+ font-family: var(--font-family-sans);
85
85
  @reference min-h-screen;
86
86
  @reference overflow-y-scroll;
87
87
  @reference text-base;
@@ -227,20 +227,16 @@
227
227
  );
228
228
 
229
229
  /* Font families */
230
+ --font-app-sans: "Work Sans";
230
231
  --font-family-sans:
231
- "Gotham", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
232
- "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
232
+ var(--font-app-sans), ui-sans-serif, system-ui, -apple-system,
233
+ BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
234
+ "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
233
235
  --font-family-serif:
234
236
  ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
235
237
  --font-family-mono:
236
238
  ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo,
237
239
  monospace;
238
- --font-sans:
239
- "var(--font-gotham)", "ui-sans-serif", "system-ui", "-apple-system",
240
- "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial",
241
- "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji",
242
- "Segoe UI Symbol", "Noto Color Emoji";
243
- --font-gotham: "Gotham", sans-serif;
244
240
  }
245
241
 
246
242
  /* Change this path to be relative to where this CSS file ends up after packaging this library. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youngonesworks/ui",
3
- "version": "0.1.121",
3
+ "version": "0.1.122",
4
4
  "description": "A Youngones UI component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",