style(Divider): 调整分割线的透明度

- 将分割线的透明度从 38% 调整为 18%
- 此修改旨在提升分割线的视觉效果和一致性
This commit is contained in:
Vixalie
2025-08-13 22:37:27 +08:00
parent 867e5f03f1
commit 727fb43791

View File

@@ -20,7 +20,7 @@ const Divider: Component<DividerProps> = (props) => {
class={cx( class={cx(
'border-solid', 'border-solid',
mProps.direction === 'horizontal' ? 'w-full border-t' : 'h-full border-l', 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',
)} )}
/> />
); );