Skip to content

Commit

Permalink
Merge pull request #26 from crow-fox/bugFix/ThemeSelect
Browse files Browse the repository at this point in the history
一部ブラウザでselectの背景色が異なって表示されることを修正
  • Loading branch information
crow-fox authored Apr 28, 2024
2 parents 2aae56f + 99e3a42 commit 41b64ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/_features/darkmode/ThemeSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function ThemeSelect() {
id={uid}
value={theme}
onChange={(e) => setTheme(e.target.value)}
className="inline-grid appearance-none rounded-lg border border-gray-900 py-2 pl-2 pr-6 text-base/none [grid-area:1/1] dark:border-gray-200 "
className="inline-grid appearance-none rounded-lg border border-gray-900 bg-white py-2 pl-2 pr-6 text-base/none [grid-area:1/1] dark:border-gray-200 dark:bg-gray-950 "
>
<option value="system">System</option>
<option value="dark">Dark</option>
Expand Down

0 comments on commit 41b64ce

Please sign in to comment.