Skip to content

Commit a279d9a

Browse files
committed
Visual updates
1 parent 7ae80fa commit a279d9a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

webview-ui/src/components/settings/AdvancedSettingsSection.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,11 @@ export const AdvancedSettingsSection: React.FC<AdvancedSettingsSectionProps> = (
3232
appearance="secondary"
3333
onClick={toggleExpanded}
3434
className="flex items-center justify-between w-full text-left">
35-
<span className="font-medium whitespace-nowrap">{t("settings:advanced.section.label")}</span>
36-
<span className="ml-2">{isExpanded ? "▼" : "▶"}</span>
35+
{`${t("settings:advanced.section.label")} ${isExpanded ? "▼" : "▶"}`}
3736
</VSCodeButton>
3837

3938
{isExpanded && (
40-
<div className="flex flex-col gap-4 pl-4 border-l-2 border-vscode-button-background">
39+
<div className="flex flex-col gap-4">
4140
<DiffSettingsControl
4241
diffEnabled={diffEnabled}
4342
fuzzyMatchThreshold={fuzzyMatchThreshold}

0 commit comments

Comments
 (0)