fix login form style in dark mode (#608)
This commit is contained in:
@@ -110,7 +110,7 @@ export const BanduLoginForm = () => {
|
||||
value={phoneNumber}
|
||||
onInput={validatePhone}
|
||||
onBlur={validatePhone}
|
||||
className="border text-lg py-2 px-4 rounded w-80"
|
||||
className="border text-lg py-2 px-4 rounded w-80 dark:bg-background dark:text-foreground"
|
||||
ref={ref}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -90,7 +90,7 @@ export const MixinLoginForm = () => {
|
||||
placeholder={t("inputMixinId")}
|
||||
onInput={(event) => validateMixinId(event.currentTarget.value)}
|
||||
onBlur={(event) => validateMixinId(event.currentTarget.value)}
|
||||
className="border py-2 px-4 rounded"
|
||||
className="border py-2 px-4 rounded dark:bg-background dark:text-foreground"
|
||||
/>
|
||||
</div>
|
||||
<div className="grid gap-2">
|
||||
|
||||
Reference in New Issue
Block a user