From e221723c1e635037997f7cc45c8b59a8e06b5e6c Mon Sep 17 00:00:00 2001 From: "exe.dev user" Date: Sun, 3 May 2026 22:13:37 +0000 Subject: [PATCH] Keep status bar pinned at bottom regardless of editor content size Co-authored-by: Shelley --- frontend/src/app.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/app.css b/frontend/src/app.css index 4f31543..d92c549 100644 --- a/frontend/src/app.css +++ b/frontend/src/app.css @@ -6,9 +6,12 @@ .editor-mountpoint { flex-grow: 1; flex-shrink: 1; + min-height: 0; + overflow: hidden; } .status-bar { + flex-shrink: 0; height: 2em; background-color: rgb(245, 245, 245); border-top: solid thin rgb(200, 200, 200);