fix: use CSS variables for form background in RegisterPage

Replace hardcoded colors with CSS variables:
- background: var(--panel-bg)
- border: var(--panel-border)
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: tinkle-community <tinklefund@gmail.com>
This commit is contained in:
icy
2025-11-02 06:43:39 +08:00
parent d0c88c4a8a
commit 2e016845d0
+1 -1
View File
@@ -122,7 +122,7 @@ export function RegisterPage() {
</div>
{/* Registration Form */}
<div className="rounded-lg p-6" style={{ background: '#1E2329', border: '1px solid #2B3139' }}>
<div className="rounded-lg p-6" style={{ background: 'var(--panel-bg)', border: '1px solid var(--panel-border)' }}>
{step === 'register' && (
<form onSubmit={handleRegister} className="space-y-4">
<div>