fix(NavigationMenu): set content max-height in horizontal orientation

Resolves #4208
This commit is contained in:
Benjamin Canac
2025-05-26 17:46:46 +02:00
parent 66f6c7743c
commit 62bc7b25a2
3 changed files with 5 additions and 5 deletions

View File

@@ -60,7 +60,7 @@ export default (options: Required<ModuleOptions>) => ({
childList: 'grid p-2',
childLink: 'px-3 py-2 gap-2 before:inset-x-px before:inset-y-0',
childLinkLabel: 'font-medium',
content: 'absolute top-0 left-0 w-full'
content: 'absolute top-0 left-0 w-full max-h-[70vh] overflow-y-auto'
},
vertical: {
root: 'flex-col',