Skip to content
Merged
Changes from 1 commit
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
Next Next commit
[fix] improve FormDropdownMenu scrolling behavior
- Add top margin (mt-1) for better spacing
- Change overflow-hidden to overflow-y-scroll for scrollable list
  • Loading branch information
Myestery committed Nov 4, 2025
commit 497d8ef2f6ab165d520f5affda71db55d5679fce
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const searchQuery = defineModel<string>('searchQuery')
:is-querying="isQuerying"
/>
<!-- List -->
<div class="relative flex h-full overflow-hidden">
<div class="relative flex h-full mt-1 overflow-y-scroll">
<div
:class="
cn(
Expand Down