From e0206b4967a64682422f9886ea63bbf64678bb4f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 20 Jul 2026 09:53:27 -0700 Subject: [PATCH] fix(dashboard): make the board face scrollable (#111911) --- ui/src/styles/chat/board.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ui/src/styles/chat/board.css b/ui/src/styles/chat/board.css index ede83452a5c..ce499014e8e 100644 --- a/ui/src/styles/chat/board.css +++ b/ui/src/styles/chat/board.css @@ -75,12 +75,22 @@ overflow: hidden; } +/* Scroll owner for the board face. Widget/tab menus stay usable because + wa-popup renders them in the top layer, so this overflow cannot clip them. + Inline padding lives on .board-view below: macOS overlay scrollbars render + inside the scroll container's padding and would float away from the edge. */ .board-session-surface__board > openclaw-board-view { display: block; flex: 1 1 0; min-width: 0; min-height: 0; - padding: 12px 16px 16px; + overflow-x: hidden; + overflow-y: auto; + padding: 12px 0 16px; +} + +.board-session-surface__board .board-view { + padding-inline: 16px; } .board-session-surface__chat {