diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-06 16:48:15 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-06 16:48:15 -0700 |
| commit | ff70d23610704dbb7a5fc2b78a4868dff3508c55 (patch) | |
| tree | 3f60997565c41a229f9c76f8437a9f06181fd5bc | |
| parent | 4aa770d2c9cc20b5ca9f54b40cf7d0946c735b15 (diff) | |
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 <noreply@anthropic.com>
| -rw-r--r-- | static/styles.css | 4 |
1 files changed, 4 insertions, 0 deletions
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, |
