fix(notification): 调整通知标题和计数样式以改善可读性

This commit is contained in:
jxxghp
2026-06-19 10:17:10 +08:00
parent 49dfd794c1
commit cf88ed9a58
+5 -8
View File
@@ -598,25 +598,22 @@ useDelayedSSE(
.notification-section-heading { .notification-section-heading {
display: flex; display: flex;
align-items: center; align-items: center;
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)); color: rgba(var(--v-theme-on-surface), 0.42);
gap: 8px; gap: 8px;
letter-spacing: 0; letter-spacing: 0;
padding-inline: 10px; padding-inline: 10px;
} }
.notification-section-heading__title { .notification-section-heading__title {
font-size: 0.75rem; font-size: 0.6875rem;
font-weight: 600; font-weight: 500;
line-height: 1.2; line-height: 1.2;
} }
.notification-section-heading__count { .notification-section-heading__count {
border-radius: 999px; color: rgba(var(--v-theme-on-surface), 0.34);
background: rgba(var(--v-theme-on-surface), 0.08); font-size: 0.625rem;
font-size: 0.6875rem;
line-height: 1; line-height: 1;
padding-block: 3px;
padding-inline: 6px;
} }
.notification-row { .notification-row {