@dorsk/tsumikit 0.42.0 → 0.43.0
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/styles/reset.css +5 -3
- package/package.json +1 -1
package/dist/styles/reset.css
CHANGED
|
@@ -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
|
-
|
|
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:
|
|
35
|
+
overflow-x: clip;
|
|
34
36
|
scrollbar-gutter: stable;
|
|
35
37
|
}
|
|
36
38
|
|
package/package.json
CHANGED