提交修改
CI / Server (Go) (push) Has been cancelled
CI / Web (Next.js) (push) Has been cancelled
CI / Mobile (React Native) (push) Has been cancelled
CI / Admin (React) (push) Has been cancelled
CI / Docker Build (push) Has been cancelled

This commit is contained in:
zeronline
2026-06-29 16:49:54 +08:00
parent 545329ac40
commit b01a5f91c3
43 changed files with 740 additions and 338 deletions
+6 -6
View File
@@ -1,7 +1,7 @@
.card {
display: flex;
align-items: center;
background: white;
background: var(--color-card);
border-radius: 12px;
margin: 0 12px 8px;
padding: 14px;
@@ -12,7 +12,7 @@
.card-icon {
width: 44px; height: 44px;
border-radius: 12px;
background: #FFF0EB;
background: var(--color-active-bg);
display: flex;
align-items: center;
justify-content: center;
@@ -20,7 +20,7 @@
margin-right: 14px;
}
.card-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.card-name { font-size: 16px; font-weight: 600; }
.card-meta { font-size: 13px; color: #86868B; }
.done-badge { font-size: 12px; color: #34C759; font-weight: 600; margin-top: 2px; }
.card-streak { font-size: 14px; color: #FF6B35; font-weight: 600; }
.card-name { font-size: 16px; font-weight: 600; color: var(--color-text); }
.card-meta { font-size: 13px; color: var(--color-text-secondary); }
.done-badge { font-size: 12px; color: var(--color-success); font-weight: 600; margin-top: 2px; }
.card-streak { font-size: 14px; color: var(--color-primary); font-weight: 600; }