fix(admin-web): 修复通知页面 SCSS 变量名

使用正确的变量名:
- $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 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-23 22:53:15 -08:00
parent 5d0264db92
commit 4b92173e9e
1 changed files with 5 additions and 5 deletions

View File

@ -23,10 +23,10 @@
} }
&__card { &__card {
background: $bg-card; background: $card-background;
border-radius: 12px; border-radius: 12px;
padding: 24px; padding: 24px;
box-shadow: $shadow-card; box-shadow: $shadow-base;
} }
&__filters { &__filters {
@ -203,7 +203,7 @@
display: flex; display: flex;
gap: 20px; gap: 20px;
font-size: 12px; font-size: 12px;
color: $text-tertiary; color: $text-disabled;
} }
// 表单样式 // 表单样式
@ -245,7 +245,7 @@
} }
&::placeholder { &::placeholder {
color: $text-tertiary; color: $text-disabled;
} }
} }
@ -257,7 +257,7 @@
&__formHint { &__formHint {
font-size: 12px; font-size: 12px;
color: $text-tertiary; color: $text-disabled;
} }
&__modalFooter { &__modalFooter {