From ff70d23610704dbb7a5fc2b78a4868dff3508c55 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Wed, 6 May 2026 16:48:15 -0700 Subject: Hide hamburger menu on desktop Set menu-toggle to display: none by default so it only appears on mobile (max-width: 760px) where it's explicitly shown. Co-Authored-By: Claude Haiku 4.5 --- static/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/styles.css b/static/styles.css index 345a1c8..bb0ee43 100644 --- a/static/styles.css +++ b/static/styles.css @@ -66,6 +66,10 @@ textarea { color: var(--accent); } +.menu-toggle { + display: none !important; +} + .nav-actions, .detail-actions, .form-actions, -- cgit v1.3-2-g0d8e