Skip to content

Commit

Permalink
style: incorrect background color for LanguageSelector in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nekomeowww committed Dec 10, 2024
1 parent 14bf689 commit 8216ee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/webgpu-whisper/src/components/LanguageSelector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function LanguageSelector({ language, setLanguage }) {

return (
<select
className="border rounded-lg p-2 max-w-[100px]"
className="border rounded-lg p-2 max-w-[100px] bg-transparent"
value={language} onChange={handleLanguageChange}>
{Object.keys(LANGUAGES).map((key, i) => (
<option key={key} value={key}>
Expand All @@ -130,4 +130,4 @@ export function LanguageSelector({ language, setLanguage }) {
))}
</select>
);
}
}

0 comments on commit 8216ee5

Please sign in to comment.