From 4b92173e9ef83e607d70978cde233b2214dfec07 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 23 Dec 2025 22:53:15 -0800 Subject: [PATCH] =?UTF-8?q?fix(admin-web):=20=E4=BF=AE=E5=A4=8D=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E9=A1=B5=E9=9D=A2=20SCSS=20=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 使用正确的变量名: - $bg-card -> $card-background - $shadow-card -> $shadow-base - $text-tertiary -> $text-disabled 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../notifications/notifications.module.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/admin-web/src/app/(dashboard)/notifications/notifications.module.scss b/frontend/admin-web/src/app/(dashboard)/notifications/notifications.module.scss index 286038d1..fc6207a8 100644 --- a/frontend/admin-web/src/app/(dashboard)/notifications/notifications.module.scss +++ b/frontend/admin-web/src/app/(dashboard)/notifications/notifications.module.scss @@ -23,10 +23,10 @@ } &__card { - background: $bg-card; + background: $card-background; border-radius: 12px; padding: 24px; - box-shadow: $shadow-card; + box-shadow: $shadow-base; } &__filters { @@ -203,7 +203,7 @@ display: flex; gap: 20px; font-size: 12px; - color: $text-tertiary; + color: $text-disabled; } // 表单样式 @@ -245,7 +245,7 @@ } &::placeholder { - color: $text-tertiary; + color: $text-disabled; } } @@ -257,7 +257,7 @@ &__formHint { font-size: 12px; - color: $text-tertiary; + color: $text-disabled; } &__modalFooter {