fix: fix admin mobile nav overflow breaking layout on small screens

Mobile nav now scrolls horizontally with hidden scrollbar; nav items
don't shrink and show icon-only on xs, icon+label on sm and up.
Added scrollbar-none utility to app.css.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-08 10:39:12 +01:00
parent 76d71ee7c3
commit 7af9c0d7ca
2 changed files with 26 additions and 17 deletions

View File

@@ -3,6 +3,13 @@
@plugin "@iconify/tailwind4";
@utility scrollbar-none {
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
}
@custom-variant dark (&:where(.dark, .dark *));
@custom-variant hover (&:hover);