fluent-svelte-extra 1.1.0 → 1.1.1
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/package.json +1 -1
- package/theme.css +9 -4
package/package.json
CHANGED
package/theme.css
CHANGED
|
@@ -15,10 +15,15 @@
|
|
|
15
15
|
--fds-accent-dark-3: 226, 100%, 20%;
|
|
16
16
|
|
|
17
17
|
/* Font Families */
|
|
18
|
-
--fds-font-family-fallback: "Segoe UI
|
|
19
|
-
|
|
20
|
-
--fds-font-family-
|
|
21
|
-
|
|
18
|
+
--fds-font-family-fallback: "Segoe UI", -apple-system, ui-sans-serif, system-ui,
|
|
19
|
+
BlinkMacSystemFont, Helvetica, Arial, sans-serif;
|
|
20
|
+
--fds-font-family-text: "Segoe UI Variable Text", "Seoge UI Variable Static Text",
|
|
21
|
+
var(--fds-font-family-fallback);
|
|
22
|
+
--fds-font-family-small: "Segoe UI Variable Small", "Seoge UI Variable Static Small",
|
|
23
|
+
var(--fds-font-family-fallback);
|
|
24
|
+
--fds-font-family-display: "Segoe UI Variable Display", "Seoge UI Variable Static Display",
|
|
25
|
+
var(--fds-font-family-fallback);
|
|
26
|
+
--fds-font-family-variable: "Segoe UI"
|
|
22
27
|
|
|
23
28
|
/* Font Size */
|
|
24
29
|
--fds-caption-font-size: 12px;
|