From c8626b1e83feea3caa7a6b2458ce89fc6b8c1e75 Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Wed, 3 Jun 2026 14:32:44 -0700 Subject: [PATCH] Artist Map v2: offset toolbar back button clear of the mobile hamburger menu The fixed hamburger (top:16 left:16, 44px, z9999) sat on top of the map's back button on mobile. Push .artmap-nav-left right by 52px on <=760px so the back button clears it. --- webui/static/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webui/static/style.css b/webui/static/style.css index 3abe87c9..d50d70e9 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -34252,7 +34252,9 @@ div.artist-hero-badge { search drops to its own full-width row below so nothing gets crushed. */ @media (max-width: 760px) { .artist-map-toolbar { flex-wrap: wrap; padding: 8px 10px; gap: 8px; } - .artmap-nav-left { flex: 1 1 auto; min-width: 0; gap: 6px; } + /* Clear the fixed hamburger menu (top:16 left:16, 44px wide) so the map's + back button isn't hidden under it. */ + .artmap-nav-left { flex: 1 1 auto; min-width: 0; gap: 6px; margin-left: 52px; } .artmap-brand-text { display: none; } .artmap-brand { flex: none; } .artmap-stats { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }