From cac97f1d9ce67a8f96e9a05df8ebe89ee8875ef7 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Wed, 1 Apr 2026 15:16:53 -0600 Subject: [PATCH] fix: increase layout editor modal specificity to override base .modal width --- public/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/css/style.css b/public/css/style.css index 69ac8c4..30077bb 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -88,7 +88,7 @@ header { } .modal-wide { width: min(720px, 96vw); } -.modal-layout-editor { width: min(1400px, 96vw); height: 92vh; } +.modal.modal-layout-editor { width: min(1400px, 96vw); height: 92vh; max-height: 92vh; } .layout-editor-body { flex: 1; min-height: 0; flex-direction: column !important; padding: 0 !important; gap: 0; overflow: hidden; } .layout-canvas-area { flex: 1; min-height: 0; display: grid; grid-template-columns: 24px 1fr; grid-template-rows: 24px 1fr; } .layout-ruler-corner { background: var(--surface); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }