mirror of
https://github.com/laoxong/nofx.git
synced 2026-06-07 03:07:56 +08:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user