bbe15ca87f
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Failing after 67h48m13s
CI/CD Pipeline / Deploy Staging (push) Failing after 67h50m19s
CI/CD Pipeline / Frontend Lint (push) Failing after 67h52m29s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 67h53m53s
- voice-clone.css: 修复 4 处多余右括号导致 postcss 解析失败 - Login.css / Register.css / generate.css / my-voices.css: prettier 格式化 - EditingPlanner.css / TimelinePanel.tsx: prettier 格式化 本地 eslint + prettier --check + tsc --noEmit 全部通过
62 lines
1.6 KiB
CSS
62 lines
1.6 KiB
CSS
/**
|
|
* 登录页样式 — V21 Design System
|
|
* 共享样式在 Auth.shared.css,此处仅保留登录页特有样式
|
|
*/
|
|
@import "./Auth.shared.css";
|
|
|
|
/* ── 品牌展示 ─────────────────────────────────────────────── */
|
|
.xx-auth-brand {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
font-weight: 900;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.xx-auth-logo {
|
|
font-size: 28px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.xx-auth-brand-name {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
/* ── 登录按钮 ───────────────────────────────────────────── */
|
|
.xx-auth-card .xx-btn-primary {
|
|
width: 100%;
|
|
height: 48px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
border-radius: var(--radius-sm);
|
|
background: linear-gradient(
|
|
135deg,
|
|
var(--color-primary-500),
|
|
var(--color-primary-600)
|
|
);
|
|
border: none;
|
|
box-shadow: 0 4px 14px
|
|
color-mix(in srgb, var(--primary-color) 30%, transparent);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.xx-auth-card .xx-btn-primary:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 6px 20px
|
|
color-mix(in srgb, var(--primary-color) 40%, transparent);
|
|
}
|
|
|
|
/* ── 忘记密码链接 ───────────────────────────────────────── */
|
|
.xx-auth-forgot {
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.xx-auth-forgot:hover {
|
|
color: var(--primary-dark);
|
|
}
|