refactor: update button and badge styles for improved theming and consistency

This commit is contained in:
2026-01-13 23:51:13 -06:00
parent 21a269998d
commit 4cdccc0323
16 changed files with 92 additions and 60 deletions

View File

@@ -87,8 +87,8 @@ const Login = () => {
value={formData.email}
onChange={handleInputChange}
placeholder="your.email@example.com"
className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple "
data-testid="login-email-input"
className="h-14 rounded-xl border-2 focus:border-brand-purple "
data-testid="login-email-input "
/>
</div>
@@ -114,7 +114,7 @@ const Login = () => {
<Button
type="submit"
disabled={loading}
className="w-full bg-[var(--neutral-800)] text-[var(--purple-ink)] hover:bg-background rounded-full py-6 text-lg font-medium shadow-lg hover:scale-105 transition-transform disabled:opacity-50"
className="w-full py-6 text-lg font-medium shadow-lg hover:scale-105 disabled:opacity-50 btn-lavender"
data-testid="login-submit-button"
>
{loading ? 'Logging in...' : 'Login'}