fix(ui): preserve narrow desktop status-row behavior

Keep the active todo text hidden below 38rem, as before, while hiding only the changed-files secondary label below 30rem. This fixes the mobile collision without reintroducing the documented narrow desktop overlap.
This commit is contained in:
RyderAsking
2026-08-03 09:55:55 +00:00
parent f0436492b4
commit b9447f0ffb
+5 -2
View File
@@ -930,12 +930,15 @@ html:not(.dark) .chat-scroll {
}
}
/* Status row: hide secondary labels before the controls collide. */
@container status-row (max-width: 30rem) {
/* Hide the long active todo before it can collide with the changed-files summary. */
@container status-row (max-width: 38rem) {
.status-row__active-todo {
display: none;
}
}
/* Hide the secondary changed-files label on narrow mobile layouts. */
@container status-row (max-width: 30rem) {
.status-row__changed-label {
display: none;
}