Skip to content

Commit 247d4d1

Browse files
committed
Fix select/combobox chevron overflow
1 parent 2aa54a1 commit 247d4d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ui/src/Combobox.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,9 +317,9 @@ defineExpose({
317317
</button>
318318
</div>
319319
320-
<div v-if="(clearable && modelValue) || (options.length || ignoreFilter)" class="flex gap-1.5 items-center shrink-0 ms-1.5 size-4">
320+
<div v-if="(clearable && modelValue) || (options.length || ignoreFilter)" class="flex gap-1.5 items-center ms-1.5 -me-2">
321321
<Button v-if="clearable && modelValue" icon="x" variant="ghost" size="xs" round @click="clear" data-ui-combobox-clear-button />
322-
<Icon v-if="options.length || ignoreFilter" name="chevron-down" class="text-gray-400 dark:text-white/40" data-ui-combobox-chevron />
322+
<Icon v-if="options.length || ignoreFilter" name="chevron-down" class="text-gray-400 dark:text-white/40 size-4" data-ui-combobox-chevron />
323323
</div>
324324
</ComboboxTrigger>
325325
</ComboboxAnchor>

0 commit comments

Comments
 (0)