anentrypoint-design 1.0.12 → 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anentrypoint-design",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/247420.js",
|
|
@@ -361,12 +361,19 @@ body.canvas-host { background: transparent !important; }
|
|
|
361
361
|
viewports (the shrink-to-fit bug undersized even the base 760px case). */
|
|
362
362
|
.app-main.narrow { width: 100%; max-width: var(--measure-narrow); margin: 0 auto; }
|
|
363
363
|
/* .narrow means "prose reading measure", not "shrink the whole shell on wide
|
|
364
|
-
screens"
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
364
|
+
screens". The old clamp(760px, 46vw, 1000px) grew too slowly to track the
|
|
365
|
+
real available column: at 1920px viewport the .app-body grid's second
|
|
366
|
+
track (.app width minus --sidebar-width) is ~1556px, but 46vw=883px sat
|
|
367
|
+
well under the 1000px ceiling, leaving a ~340px dead gutter between the
|
|
368
|
+
sidebar and the centered narrow column on an ordinary desktop screen (not
|
|
369
|
+
just ultrawide) -- confirmed live via a real 1920x1080 CDP viewport, a
|
|
370
|
+
project page (#/p/<slug>). 62vw tracks the actual column growth far closer
|
|
371
|
+
(1920*0.62=1190px, much nearer the 1556px track than 883px was) while the
|
|
372
|
+
1200px ceiling still keeps prose from stretching into an unreadable
|
|
373
|
+
full-bleed line -- sidebar-present narrow pages read the same width class
|
|
374
|
+
as the no-side variant below instead of visibly starving next to it. */
|
|
368
375
|
.app-body:not(.no-side) .app-main.narrow {
|
|
369
|
-
max-width: clamp(var(--measure-narrow),
|
|
376
|
+
max-width: clamp(var(--measure-narrow), 62vw, 1200px);
|
|
370
377
|
}
|
|
371
378
|
/* A shell with no sidebar has no competing column, so the prose clamp there was
|
|
372
379
|
leaving the whole sidebar's worth of width empty -- 760px of content inside a
|