Fix properties panel viewport overflow

Constrain main-content to 100vh and builder-wrapper to flex: 1
so the height chain propagates correctly and the properties panel
scrolls within the viewport instead of extending off screen.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
John Mizerek 2026-03-01 22:25:08 -08:00
parent 195c7d8b3b
commit dc5148d1b8

View file

@ -8,10 +8,18 @@
<link rel="stylesheet" href="portal.css">
<style>
/* Menu Builder Specific Styles */
.main-content {
height: 100vh;
max-height: 100vh;
overflow: hidden;
}
.builder-wrapper {
display: flex;
flex-direction: column;
height: 100%;
flex: 1;
min-height: 0;
overflow: hidden;
}
.builder-container {