@youngonesworks/ui 0.1.121 → 0.1.123
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/README.md +69 -56
- package/dist/components/button/buttonVariants.d.ts +1 -0
- package/dist/globals.css +1 -3
- package/dist/index.cjs +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/dist/styles/utilities.css +1 -1
- package/dist/styles/variables.css +4 -8
- package/package.json +1 -1
|
@@ -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:
|
|
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
|
-
|
|
232
|
-
|
|
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. */
|