Fix missing text-foreground on time bank unit select
The seconds/minutes/hours select in the time bank dialog had bg-background but was missing text-foreground, causing text color to fall back to browser default in dark mode. https://claude.ai/code/session_01FZz7kndEqWqFScyq4R6Wxn
This commit is contained in:
parent
f624e9d425
commit
5d72c52417
1 changed files with 1 additions and 1 deletions
|
|
@ -1570,7 +1570,7 @@ export default function DraftRoom() {
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
setTimeBankUnit(e.target.value as "seconds" | "minutes" | "hours")
|
setTimeBankUnit(e.target.value as "seconds" | "minutes" | "hours")
|
||||||
}
|
}
|
||||||
className="px-3 py-2 border rounded-md bg-background text-sm"
|
className="px-3 py-2 border rounded-md bg-background text-foreground text-sm"
|
||||||
>
|
>
|
||||||
<option value="seconds">Seconds</option>
|
<option value="seconds">Seconds</option>
|
||||||
<option value="minutes">Minutes</option>
|
<option value="minutes">Minutes</option>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue