fix(ui): stop the worktrees table from always stacking inside settings (#103899)

This commit is contained in:
Peter Steinberger
2026-07-10 19:46:37 +01:00
committed by GitHub
parent 92f3c35ee9
commit 7af7e41eed
+4 -2
View File
@@ -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;