@dorsk/tsumikit 0.42.0 → 0.43.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.
@@ -15,8 +15,10 @@ html {
15
15
  text-size-adjust: 100%;
16
16
  /* The font scaler drives --fs-scale, so only --fs-* text tokens grow — chrome
17
17
  rem dimensions stay fixed. A scaled-up token can still push a min-width child
18
- past the viewport; clip sideways so the page never gains a horizontal bar. */
19
- overflow-x: hidden;
18
+ past the viewport; clip sideways so the page never gains a horizontal bar.
19
+ `clip`, not `hidden`: hidden would make html/body scroll containers and
20
+ break every `position: sticky` header, sidebar and table head below. */
21
+ overflow-x: clip;
20
22
  max-width: 100%;
21
23
  scrollbar-gutter: stable;
22
24
  }
@@ -30,7 +32,7 @@ body {
30
32
  line-height: var(--lh-normal);
31
33
  -webkit-font-smoothing: antialiased;
32
34
  text-rendering: optimizeLegibility;
33
- overflow-x: hidden;
35
+ overflow-x: clip;
34
36
  scrollbar-gutter: stable;
35
37
  }
36
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dorsk/tsumikit",
3
- "version": "0.42.0",
3
+ "version": "0.43.1",
4
4
  "description": "Minimal, dependency-free Svelte 5 + pure-CSS UI kit. Token-driven atoms, molecules & layouts with theming out of the box.",
5
5
  "type": "module",
6
6
  "license": "MIT",