From f09f132220863851d5c5c616f9f1cf633e70af30 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Tue, 12 May 2026 23:03:34 +0200 Subject: [PATCH] fix: keep buildpulse today commands compact --- src/index.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/index.css b/src/index.css index 78a1f30..9618316 100644 --- a/src/index.css +++ b/src/index.css @@ -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; + } +}