fix(dashboard): make the board face scrollable (#111911)

This commit is contained in:
Peter Steinberger
2026-07-20 09:53:27 -07:00
committed by GitHub
parent 38df399ed8
commit e0206b4967
+11 -1
View File
@@ -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 {