fix login form style in dark mode (#608)

This commit is contained in:
an-lee
2024-05-14 20:53:39 +08:00
committed by GitHub
parent 49dabc89a3
commit 4e84e086db
2 changed files with 2 additions and 2 deletions

View File

@@ -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>

View File

@@ -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">