From 7ad389efe392ec671a2d014172c051b71c8a9f58 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 9 Aug 2026 19:39:12 +0000 Subject: [PATCH] fix: restore spacing below the mobile app banner The toggle-clearance refactor zeroed the banner container's bottom padding along with the heading's top margin, so the banner ended up flush against the page heading below it. --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 1f0026a6..5b4de383 100644 --- a/src/App.vue +++ b/src/App.vue @@ -899,7 +899,7 @@ onMounted(async () => { } .mobile-banner-container { - padding: 0 20px; + padding: 0 20px 20px; max-width: 1200px; margin: 0 auto; }