From 5909337f64e1d0d7570feafba4ecb752055ac8bc Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 9 May 2026 20:36:35 +0200 Subject: [PATCH] fix: widen final phone gutter --- src/index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/index.css b/src/index.css index 55ff497..1045905 100644 --- a/src/index.css +++ b/src/index.css @@ -1198,3 +1198,10 @@ body { margin-right: 0; } } + +/* Conservative final mobile gutter: avoid any perceived right-edge clipping. */ +@media (max-width: 520px) { + .app-shell { + width: min(100% - 4rem, 100%); + } +}