fix(recharge): 修正 CSS 变量名 primary-color → primary

项目中不存在 --primary-color 变量,实际生效为默认黑色。
统一替换为 --primary,hover 和 refresh 按钮颜色恢复正常。
This commit is contained in:
小鱼开发
2026-05-18 22:11:29 +08:00
parent 6763228ed9
commit 8d39816673
@@ -49,7 +49,7 @@
}
.recharge-amount-card:hover {
border-color: var(--primary-color);
border-color: var(--primary);
}
.recharge-amount-card.selected {
@@ -176,7 +176,7 @@
border-radius: 50%;
border: 1px solid var(--border-light);
background: white;
color: var(--primary-color);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;