Browse Source

fix: long navigation menu can be scrolled (#5939)

* 修复超长的导航菜单无法纵向滚动的问题
pull/5945/head
Netfan 1 year ago
committed by GitHub
parent
commit
ff88274554
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      packages/@core/ui-kit/menu-ui/src/components/sub-menu.vue

2
packages/@core/ui-kit/menu-ui/src/components/sub-menu.vue

@ -208,6 +208,8 @@ onBeforeUnmount(() => {
nsMenu.e('popup-container'),
is(rootMenu.theme, true),
opened ? '' : 'hidden',
'overflow-auto',
'max-h-[calc(var(--radix-hover-card-content-available-height)-20px)]',
]"
:content-props="contentProps"
:open="true"

Loading…
Cancel
Save