fix: use segmented phone tabs

This commit is contained in:
OpenClaw Bot
2026-05-09 20:32:33 +02:00
parent cbc10bf58e
commit 1c7bc0a691
+15
View File
@@ -1171,3 +1171,18 @@ body {
line-height: 1.1;
}
}
/* Final phone shape: obvious 2x2 segmented tabs, no hidden/offscreen nav. */
@media (max-width: 520px) {
.tab-bar {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.35rem;
}
.tab {
width: 100%;
min-height: 2.45rem;
font-size: 0.86rem;
}
}