nambahin scroll top menu

This commit is contained in:
masopik 2025-11-06 14:49:06 +07:00
parent f6b2326bad
commit 064e6a220e
2 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View File

@ -14,5 +14,6 @@
/storage/*.key /storage/*.key
/vendor /vendor
.env .env
.htaccess

View File

@ -11,7 +11,10 @@
padding: 0 8px; padding: 0 8px;
position: relative; position: relative;
z-index: 1000; z-index: 1000;
overflow: visible; overflow-x: auto; /* scroll horizontal */
overflow-y: hidden; /* sembunyikan scroll vertikal */
white-space: nowrap; /* cegah isi turun ke baris baru */
scrollbar-width: thin; /* (opsional, Firefox) scrollbar kecil */
} }
@ -311,4 +314,4 @@
#top_menu { #top_menu {
min-height: 50px; min-height: 50px;
} }
} }