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; + } +}