Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion resources/js/components/ui/Dropdown/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const props = defineProps({

const dropdownContentClasses = cva({
base: [
'rounded-xl min-w-64 bg-gray-50 dark:bg-gray-800 outline-hidden overflow-hidden group z-50',
'rounded-xl min-w-64 bg-gray-50 dark:bg-gray-800 outline-hidden overflow-y-auto group z-50',
'max-h-[calc(var(--reka-dropdown-menu-content-available-height,300px)-16px)]',
'border border-gray-200 dark:border-black shadow-lg popoverAnimation',
],
})({});
Expand Down
Loading