dark mode

This commit is contained in:
2026-03-14 15:47:29 -05:00
parent 8505d4fd57
commit 84bd962744
4 changed files with 63 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ export function LoginPage() {
className="w-full rounded-2xl border border-line/70 bg-page px-4 py-3 text-text outline-none transition focus:border-brand"
/>
</label>
{error ? <div className="rounded-2xl border border-red-300 bg-red-50 px-4 py-3 text-sm text-red-700">{error}</div> : null}
{error ? <div className="rounded-2xl border border-red-500/30 bg-red-500/10 px-4 py-3 text-sm text-red-200 dark:text-red-200">{error}</div> : null}
<button
type="submit"
disabled={isSubmitting}
@@ -73,4 +73,3 @@ export function LoginPage() {
</div>
);
}