From aafa92430ab9261842a08b4b9a6756b5591b2522 Mon Sep 17 00:00:00 2001 From: shiran <2488252513@qq.com> Date: Fri, 20 Feb 2026 21:32:11 +0800 Subject: [PATCH] =?UTF-8?q?style(scss):=20=E6=9B=B4=E6=96=B0=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E8=A7=84=E5=88=99=E4=BB=A5=E6=94=B9=E8=BF=9B=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E5=92=8C=E9=98=B4=E5=BD=B1=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为 regular.ember-view 添加 !important 修饰符以确保背景色优先级 - 移除 box-shadow 属性上的 !important 修饰符以优化样式继承 - 保持模糊效果和内边距设置不变 --- scss/self.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/self.scss b/scss/self.scss index c8f9eaf..c792ebf 100644 --- a/scss/self.scss +++ b/scss/self.scss @@ -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; }