Aplica el sistema de diseño (nw-input/nw-btn/nw-card) a todas las páginas

Reemplazo masivo de los estilos sueltos repetidos por las clases del sistema visual
en ~20 componentes/páginas (auth, cuenta, servicios de personaje, foro, admin, voto):
- inputs -> .nw-input, botones primarios -> .nw-btn, tarjetas -> .nw-card.
Cohesión visual completa con la home y la cabecera.

Verificado: build OK, páginas clave 200/redirect correctos, clases aplicadas.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-13 00:13:22 +00:00
parent c9ba6c35e3
commit 3e47a3d240
21 changed files with 40 additions and 78 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ export function GoldForm({ characters, options }: { characters: string[]; option
}
}
const field = 'w-full rounded border border-amber-900/60 bg-[#2c1e14] px-3 py-2'
const field = 'nw-input'
if (characters.length === 0) return <p className="text-amber-200/70">{t('noCharactersYet')}</p>
return (
@@ -54,7 +54,7 @@ export function GoldForm({ characters, options }: { characters: string[]; option
</option>
))}
</select>
<button type="submit" disabled={busy || !character || !amount} className="w-full rounded bg-amber-600 px-4 py-2 font-semibold text-[#1b120b] disabled:opacity-60">
<button type="submit" disabled={busy || !character || !amount} className="w-full nw-btn disabled:opacity-60">
{busy ? t('processing') : tp('gold.buy')}
</button>
</form>