mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
fix(ui): stop the worktrees table from always stacking inside settings (#103899)
This commit is contained in:
committed by
GitHub
parent
92f3c35ee9
commit
7af7e41eed
@@ -3041,14 +3041,16 @@
|
||||
min-width: 180px;
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
/* Settings caps .settings-workspace at 1120px, so the table container is ~1080px
|
||||
wide; a 1100px stack breakpoint would collapse the grid at every window size. */
|
||||
@media (max-width: 900px) {
|
||||
.worktrees-table .table-head,
|
||||
.worktrees-table .table-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@container (max-width: 1100px) {
|
||||
@container (max-width: 900px) {
|
||||
.worktrees-table .table-head,
|
||||
.worktrees-table .table-row {
|
||||
grid-template-columns: 1fr;
|
||||
|
||||
Reference in New Issue
Block a user