@kiefer-tek/sophea-design-system 0.17.0 → 0.17.2
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 +10 -0
- package/dist/tokens/index.js +1 -1
- package/package.json +1 -1
- package/src/tokens/colors_and_type.css +12 -5
- package/src/tokens/tokens.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5903,6 +5903,16 @@ a.sn-Button-module__btn--Fx11X[aria-disabled="true"] {
|
|
|
5903
5903
|
background: var(--surface-s3);
|
|
5904
5904
|
}
|
|
5905
5905
|
|
|
5906
|
+
/* Sticky-header variant: the table must NOT be its own clip/scroll context, or
|
|
5907
|
+
the sticky <thead> anchors to the table box (and scrolls away) instead of the
|
|
5908
|
+
surrounding scroll container. Drop overflow/border/radius so the consumer's
|
|
5909
|
+
scroll container owns them — typically a `rounded-b-2xl overflow-auto` box (or
|
|
5910
|
+
an `overflow-hidden` card) giving a flush square-top header + rounded bottom. */
|
|
5911
|
+
.sn-Table-module__sticky--QfxLu {
|
|
5912
|
+
overflow: visible;
|
|
5913
|
+
border: 0;
|
|
5914
|
+
border-radius: 0;
|
|
5915
|
+
}
|
|
5906
5916
|
.sn-Table-module__sticky--QfxLu .sn-Table-module__th--PNuEx {
|
|
5907
5917
|
position: sticky;
|
|
5908
5918
|
top: 0;
|
package/dist/tokens/index.js
CHANGED
|
@@ -289,7 +289,7 @@ const motion$1 = {
|
|
|
289
289
|
const font = {
|
|
290
290
|
family: {
|
|
291
291
|
sans: {
|
|
292
|
-
$value: "Geist, Geist Variable, ui-sans-serif, system-ui, sans-serif",
|
|
292
|
+
$value: "Geist, Geist Variable, Inter, ui-sans-serif, system-ui, sans-serif",
|
|
293
293
|
$type: "fontFamily"
|
|
294
294
|
},
|
|
295
295
|
mono: {
|
package/package.json
CHANGED
|
@@ -13,11 +13,18 @@
|
|
|
13
13
|
* brand-navy CTAs, vivid brand-light selection. Quietly rounded corners,
|
|
14
14
|
* predictable hierarchy.
|
|
15
15
|
*
|
|
16
|
-
* Fonts: Geist Sans for everything (body, UI, headings), DM Mono for code
|
|
17
|
-
*
|
|
16
|
+
* Fonts: Geist Sans for everything (body, UI, headings), DM Mono for code,
|
|
17
|
+
* Inter as the Greek-coverage fallback (Geist has no Greek glyphs).
|
|
18
|
+
* All Google Fonts (next/font/google in production).
|
|
18
19
|
* ========================================================================== */
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
/* Geist has no Greek glyphs, so Greek text would otherwise fall back per-glyph
|
|
22
|
+
to an undesigned system font (visible glitches, e.g. "πρώτη" mis-spaced under
|
|
23
|
+
tracking-tight). Inter ships complete, well-matched Greek; loading it here
|
|
24
|
+
(Google Fonts splits per-script, so the Greek subset downloads only when
|
|
25
|
+
Greek is rendered) lets the "Inter" entry in the sans stack supply Greek
|
|
26
|
+
consistently while Geist keeps Latin. */
|
|
27
|
+
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap");
|
|
21
28
|
|
|
22
29
|
/* ---------- Light mode primitives ---------- */
|
|
23
30
|
:root {
|
|
@@ -763,8 +770,8 @@
|
|
|
763
770
|
* ========================================================================== */
|
|
764
771
|
:root {
|
|
765
772
|
--font-family-sans:
|
|
766
|
-
"Geist", "Geist Variable", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
|
|
767
|
-
"Helvetica Neue", Arial, sans-serif;
|
|
773
|
+
"Geist", "Geist Variable", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
|
|
774
|
+
Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
768
775
|
--font-family-mono:
|
|
769
776
|
"DM Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
|
|
770
777
|
monospace;
|
package/src/tokens/tokens.json
CHANGED