From 317d45249884e1ffbcd00d2957eb3d24ea933555 Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Thu, 24 Apr 2025 15:18:53 +0800 Subject: [PATCH] style(settings): update border-radius to use CSS variable for consistency --- src/renderer/src/pages/settings/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/pages/settings/index.tsx b/src/renderer/src/pages/settings/index.tsx index 072e5ead90..bd3230dfe5 100644 --- a/src/renderer/src/pages/settings/index.tsx +++ b/src/renderer/src/pages/settings/index.tsx @@ -86,7 +86,7 @@ export const SettingHelpLink = styled(Link)` export const SettingGroup = styled.div<{ theme?: ThemeMode; css?: CSSProp }>` margin-bottom: 20px; - border-radius: 8px; + border-radius: var(--list-item-border-radius); border: 0.5px solid var(--color-border); padding: 16px; background: ${(props) => (props.theme === 'dark' ? '#00000010' : 'var(--color-background)')};