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:
parent
5d0264db92
commit
4b92173e9e
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue