anentrypoint-design 0.0.406 → 0.0.407
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/colors_and_type.css
CHANGED
|
@@ -330,8 +330,15 @@
|
|
|
330
330
|
--measure-narrow: 760px;
|
|
331
331
|
/* Page-stage ceiling — independent of --measure-wide (which stays the
|
|
332
332
|
narrower editorial hero/prose measure). Fluid so ultra-wide viewports
|
|
333
|
-
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
334
|
-
|
|
333
|
+
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
334
|
+
Percentage, not vw: a stage nested in a sidebar shell or an embedded
|
|
335
|
+
window has no useful viewport of its own, and a vw term there resolves
|
|
336
|
+
against the browser instead of the container it actually sits in. */
|
|
337
|
+
--stage-wide: min(96%, 1600px);
|
|
338
|
+
/* Ultra-wide tier — past this the eye loses the line more than the layout
|
|
339
|
+
gains, so multi-column content takes the extra width instead of one
|
|
340
|
+
column growing without bound. */
|
|
341
|
+
--stage-ultra: min(96%, 2100px);
|
|
335
342
|
|
|
336
343
|
--sidebar-width: 220px;
|
|
337
344
|
--sidebar-width-collapsed: 64px;
|
package/dist/247420.css
CHANGED
|
@@ -332,8 +332,15 @@
|
|
|
332
332
|
--measure-narrow: 760px;
|
|
333
333
|
/* Page-stage ceiling — independent of --measure-wide (which stays the
|
|
334
334
|
narrower editorial hero/prose measure). Fluid so ultra-wide viewports
|
|
335
|
-
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
336
|
-
|
|
335
|
+
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
336
|
+
Percentage, not vw: a stage nested in a sidebar shell or an embedded
|
|
337
|
+
window has no useful viewport of its own, and a vw term there resolves
|
|
338
|
+
against the browser instead of the container it actually sits in. */
|
|
339
|
+
--stage-wide: min(96%, 1600px);
|
|
340
|
+
/* Ultra-wide tier — past this the eye loses the line more than the layout
|
|
341
|
+
gains, so multi-column content takes the extra width instead of one
|
|
342
|
+
column growing without bound. */
|
|
343
|
+
--stage-ultra: min(96%, 2100px);
|
|
337
344
|
|
|
338
345
|
--sidebar-width: 220px;
|
|
339
346
|
--sidebar-width-collapsed: 64px;
|
|
@@ -1802,7 +1809,7 @@
|
|
|
1802
1809
|
grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
|
|
1803
1810
|
grid-template-areas: 'title title' 'body aside';
|
|
1804
1811
|
align-items: start;
|
|
1805
|
-
max-width: var(--
|
|
1812
|
+
max-width: var(--stage-wide);
|
|
1806
1813
|
position: relative; isolation: isolate;
|
|
1807
1814
|
}
|
|
1808
1815
|
.ds-247420 .ds-hero-head { grid-area: title; display: grid; gap: var(--space-3); }
|
|
@@ -2863,7 +2870,7 @@
|
|
|
2863
2870
|
/* Stage — the scrollable content column. */
|
|
2864
2871
|
.ds-247420 .ds-file-stage {
|
|
2865
2872
|
display: flex; flex-direction: column; gap: var(--space-3);
|
|
2866
|
-
width: 100%; max-width: var(--
|
|
2873
|
+
width: 100%; max-width: var(--stage-wide); margin: 0 auto;
|
|
2867
2874
|
padding: var(--space-2) var(--space-3) var(--space-4);
|
|
2868
2875
|
}
|
|
2869
2876
|
/* When the stage is the app-main child, the shell already supplies top
|
|
@@ -3312,7 +3319,7 @@
|
|
|
3312
3319
|
color: var(--fg-2); text-decoration: none;
|
|
3313
3320
|
}
|
|
3314
3321
|
.ds-247420 .ds-catalog-side nav a:hover { color: var(--accent-ink); }
|
|
3315
|
-
.ds-247420 .ds-catalog-main { flex: 1; padding: var(--space-5); max-width: var(--
|
|
3322
|
+
.ds-247420 .ds-catalog-main { flex: 1; padding: var(--space-5); max-width: var(--stage-wide); min-width: 0; }
|
|
3316
3323
|
.ds-247420 .ds-catalog-section { margin-bottom: var(--space-5); padding-top: var(--space-3); border-top: var(--bw-hair) solid var(--rule); }
|
|
3317
3324
|
.ds-247420 .ds-catalog-section > h2 { font-size: var(--fs-h3-app); margin: 0 0 var(--space-3); }
|
|
3318
3325
|
|