From 727fb437915782041c325fdc87eeaf0255413114 Mon Sep 17 00:00:00 2001 From: Vixalie Date: Wed, 13 Aug 2025 22:37:27 +0800 Subject: [PATCH] =?UTF-8?q?style(Divider):=20=E8=B0=83=E6=95=B4=E5=88=86?= =?UTF-8?q?=E5=89=B2=E7=BA=BF=E7=9A=84=E9=80=8F=E6=98=8E=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将分割线的透明度从 38% 调整为 18% - 此修改旨在提升分割线的视觉效果和一致性 --- src/components/Divider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx index 094538d..cc3feb4 100644 --- a/src/components/Divider.tsx +++ b/src/components/Divider.tsx @@ -20,7 +20,7 @@ const Divider: Component = (props) => { class={cx( 'border-solid', mProps.direction === 'horizontal' ? 'w-full border-t' : 'h-full border-l', - mProps.faded ? 'border-outline/38' : 'border-outline', + mProps.faded ? 'border-outline/18' : 'border-outline', )} /> );