Skip to content

Commit 0bbdf3a

Browse files
committed
Fix default select line height
1 parent e24f05b commit 0bbdf3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stubs/resources/views/flux/select/variants/default.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
->add('appearance-none') // Strip the browser's default <select> styles...
1313
->add('w-full ps-3 pe-10 block')
1414
->add(match ($size) {
15-
default => 'h-10 py-2 text-base sm:text-sm leading-none rounded-lg',
16-
'sm' => 'h-8 py-1.5 text-sm leading-none rounded-md',
17-
'xs' => 'h-6 text-xs leading-none rounded-md',
15+
default => 'h-10 py-2 text-base sm:text-sm leading-[1.375rem] rounded-lg',
16+
'sm' => 'h-8 py-1.5 text-sm leading-[1.125rem] rounded-md',
17+
'xs' => 'h-6 text-xs leading-[1.125rem] rounded-md',
1818
})
1919
->add('shadow-xs border')
2020
->add('bg-white dark:bg-white/10 dark:disabled:bg-white/[9%]')

0 commit comments

Comments
 (0)