anentrypoint-design 1.0.11 → 1.0.13
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/247420.css +12 -5
- package/dist/247420.js +23 -23
- package/package.json +1 -1
- package/src/css/app-shell/topbar.css +12 -5
- package/src/kits/os/theme.css +62 -1
- package/src/kits/os/wm.js +41 -2
package/dist/247420.css
CHANGED
|
@@ -1481,12 +1481,19 @@
|
|
|
1481
1481
|
viewports (the shrink-to-fit bug undersized even the base 760px case). */
|
|
1482
1482
|
.ds-247420 .app-main.narrow { width: 100%; max-width: var(--measure-narrow); margin: 0 auto; }
|
|
1483
1483
|
/* .narrow means "prose reading measure", not "shrink the whole shell on wide
|
|
1484
|
-
screens"
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1484
|
+
screens". The old clamp(760px, 46vw, 1000px) grew too slowly to track the
|
|
1485
|
+
real available column: at 1920px viewport the .app-body grid's second
|
|
1486
|
+
track (.app width minus --sidebar-width) is ~1556px, but 46vw=883px sat
|
|
1487
|
+
well under the 1000px ceiling, leaving a ~340px dead gutter between the
|
|
1488
|
+
sidebar and the centered narrow column on an ordinary desktop screen (not
|
|
1489
|
+
just ultrawide) -- confirmed live via a real 1920x1080 CDP viewport, a
|
|
1490
|
+
project page (#/p/<slug>). 62vw tracks the actual column growth far closer
|
|
1491
|
+
(1920*0.62=1190px, much nearer the 1556px track than 883px was) while the
|
|
1492
|
+
1200px ceiling still keeps prose from stretching into an unreadable
|
|
1493
|
+
full-bleed line -- sidebar-present narrow pages read the same width class
|
|
1494
|
+
as the no-side variant below instead of visibly starving next to it. */
|
|
1488
1495
|
.ds-247420 .app-body:not(.no-side) .app-main.narrow {
|
|
1489
|
-
max-width: clamp(var(--measure-narrow),
|
|
1496
|
+
max-width: clamp(var(--measure-narrow), 62vw, 1200px);
|
|
1490
1497
|
}
|
|
1491
1498
|
/* A shell with no sidebar has no competing column, so the prose clamp there was
|
|
1492
1499
|
leaving the whole sidebar's worth of width empty -- 760px of content inside a
|