fix: keep buildpulse today commands compact

This commit is contained in:
OpenClaw Bot
2026-05-12 23:03:34 +02:00
parent 579cffd874
commit f09f132220
+33
View File
@@ -2800,3 +2800,36 @@ select {
border-radius: 9px;
}
}
/* v0.4.3a — keep the secondary command affordance compact on phones. */
@media (max-width: 760px) {
.today-command-bar {
grid-template-columns: minmax(0, 1fr) auto;
align-items: stretch;
}
.today-drawer-toggle {
width: auto;
min-width: 6.9rem;
padding-inline: 0.7rem;
}
}
/* v0.4.3b — no overflow in the compact Today action strip. */
@media (max-width: 760px) {
.today-command-bar > button {
min-width: 0;
}
.today-primary-command {
padding-inline: 0.55rem;
white-space: normal;
}
.today-drawer-toggle {
min-width: 5.95rem;
padding-inline: 0.5rem;
font-size: 0.82rem;
white-space: nowrap;
}
}