Skip to content

Commit 8e6a3a5

Browse files
committed
Improve dark mode styles
1 parent e7e1365 commit 8e6a3a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/conf/2025/schedule/_components/filters.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ function FiltersCombobox({
9898
{label}
9999
</Combobox.Label>
100100
)}
101-
<label className="relative w-full border border-neu-500 bg-neu-0 p-2 leading-normal focus-within:outline-none focus-within:ring focus-within:ring-neu-300">
101+
<label className="relative w-full border border-neu-500 p-2 focus-within:outline-none focus-within:ring focus-within:ring-neu-300 dark:focus-within:ring-neu-200">
102102
<Combobox.Input
103103
value={query}
104104
onChange={e => setQuery(e.target.value)}
105105
className={clsx(
106-
"text-neu-800 !outline-offset-0 typography-body-sm placeholder:text-neu-600 focus:outline-none max-lg:typography-body-md",
106+
"bg-transparent leading-none text-neu-800 !outline-offset-0 typography-body-sm [text-box:trim-both_cap_alphabetic] placeholder:text-neu-600 focus:outline-none max-lg:typography-body-md",
107107
)}
108108
placeholder={placeholder}
109109
autoComplete="true"
@@ -206,7 +206,7 @@ function FilterComboboxOption({
206206
<div
207207
className={clsx(
208208
"relative flex cursor-default select-none items-center p-1 font-sans typography-body-sm",
209-
active && "bg-neu-100",
209+
active && "bg-neu-100 dark:bg-neu-50",
210210
)}
211211
>
212212
<CheckboxIcon

0 commit comments

Comments
 (0)