style(scss): 添加重要样式覆盖规则
Discourse Theme / ci (push) Failing after 0s

- 在box-shadow属性上添加!important标记以确保样式覆盖
- 保持原有的背景色、圆角和模糊效果设置不变
- 确保元素具有24px的内边距设置
This commit is contained in:
2026-02-20 21:30:57 +08:00
parent bee984881e
commit 0ca608ab91
+1 -1
View File
@@ -48,6 +48,6 @@
background-color: #ffffffa8;
border-radius: var(--d-border-radius);
backdrop-filter: blur(16px);
box-shadow: #00000077 0 0 19px 0;
box-shadow: #00000077 0 0 19px 0 !important;
padding: 24px;
}