From 25bdfd9665b936fa58000c0a7b0d7f9b2d34addd Mon Sep 17 00:00:00 2001 From: laansdole Date: Mon, 16 Mar 2026 17:55:57 +0700 Subject: [PATCH] fix: min height 0 to make fullscreen chat scrollable --- frontend/src/pages/LaunchView.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/pages/LaunchView.vue b/frontend/src/pages/LaunchView.vue index 497c39ee..9a53ca88 100755 --- a/frontend/src/pages/LaunchView.vue +++ b/frontend/src/pages/LaunchView.vue @@ -2363,6 +2363,7 @@ watch( flex-direction: column; pointer-events: auto; z-index: auto; + min-height: 0; } .chat-panel-fullscreen .chat-panel-content { @@ -2381,6 +2382,7 @@ watch( flex-direction: column; gap: 12px; min-width: 0; + min-height: 0; pointer-events: auto; background: rgba(26, 26, 26, 0.92); border: 1px solid rgba(255, 255, 255, 0.1);