style(scss): 更新样式规则以改进背景和阴影属性
Discourse Theme / ci (push) Failing after 1s

- 为 regular.ember-view 添加 !important 修饰符以确保背景色优先级
- 移除 box-shadow 属性上的 !important 修饰符以优化样式继承
- 保持模糊效果和内边距设置不变
This commit is contained in:
2026-02-20 21:32:11 +08:00
parent 0ca608ab91
commit aafa92430a
+2 -2
View File
@@ -45,9 +45,9 @@
}
.regular.ember-view{
background-color: #ffffffa8;
background-color: #ffffffa8 !important;
border-radius: var(--d-border-radius);
backdrop-filter: blur(16px);
box-shadow: #00000077 0 0 19px 0 !important;
box-shadow: #00000077 0 0 19px 0;
padding: 24px;
}