anentrypoint-design 0.0.178 → 0.0.180
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/app-shell.css +8 -1
- package/dist/247420.css +8 -1
- package/dist/247420.js +9 -9
- package/package.json +1 -1
- package/src/components/files-modals.js +14 -3
package/app-shell.css
CHANGED
|
@@ -330,7 +330,14 @@ pre .n { color: var(--green-2); }
|
|
|
330
330
|
align-self: stretch;
|
|
331
331
|
height: 100%;
|
|
332
332
|
}
|
|
333
|
-
|
|
333
|
+
/* Document children (hero, sections, panels) keep their natural height in the
|
|
334
|
+
scrolling flex column. Without flex-shrink:0 the flex algorithm shrinks them
|
|
335
|
+
toward min-height:0 once total content exceeds the fixed-height .app-main,
|
|
336
|
+
collapsing every section to 0 and piling content on top of itself — the
|
|
337
|
+
failure mode any long-scroll page (a marketing/landing route) hits. Grow
|
|
338
|
+
children (.chat/.grow/etc.) re-assert flex:1 1 auto below via higher
|
|
339
|
+
specificity, so a single full-height pane still fills the region. */
|
|
340
|
+
.app-main > * { min-height: 0; flex-shrink: 0; }
|
|
334
341
|
/* The main region scrolls its own overflow at every breakpoint (previously
|
|
335
342
|
only ≥901px), so a fixed-height .app never clips route content and inner
|
|
336
343
|
panels don't fight the page scroll. */
|
package/dist/247420.css
CHANGED
|
@@ -731,7 +731,14 @@
|
|
|
731
731
|
align-self: stretch;
|
|
732
732
|
height: 100%;
|
|
733
733
|
}
|
|
734
|
-
|
|
734
|
+
/* Document children (hero, sections, panels) keep their natural height in the
|
|
735
|
+
scrolling flex column. Without flex-shrink:0 the flex algorithm shrinks them
|
|
736
|
+
toward min-height:0 once total content exceeds the fixed-height .app-main,
|
|
737
|
+
collapsing every section to 0 and piling content on top of itself — the
|
|
738
|
+
failure mode any long-scroll page (a marketing/landing route) hits. Grow
|
|
739
|
+
children (.chat/.grow/etc.) re-assert flex:1 1 auto below via higher
|
|
740
|
+
specificity, so a single full-height pane still fills the region. */
|
|
741
|
+
.ds-247420 .app-main > * { min-height: 0; flex-shrink: 0; }
|
|
735
742
|
/* The main region scrolls its own overflow at every breakpoint (previously
|
|
736
743
|
only ≥901px), so a fixed-height .app never clips route content and inner
|
|
737
744
|
panels don't fight the page scroll. */
|