From d635914d4b0dae497e89f2dee0dbd7bcefa0c9f3 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Sun, 22 Feb 2026 11:53:05 -0800 Subject: [PATCH] Remove unnecessary and clashing rounded border on settings panes --- frontend/src/components/SettingsModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/SettingsModal.tsx b/frontend/src/components/SettingsModal.tsx index a36f2a4..769a29f 100644 --- a/frontend/src/components/SettingsModal.tsx +++ b/frontend/src/components/SettingsModal.tsx @@ -654,7 +654,7 @@ export function SettingsModal(props: SettingsModalProps) { const shouldRenderSection = (section: SettingsSection) => !externalDesktopSidebarMode || desktopSection === section; - const sectionWrapperClass = 'border border-input rounded-md overflow-hidden'; + const sectionWrapperClass = 'overflow-hidden'; const sectionContentClass = externalDesktopSidebarMode ? 'space-y-4 p-4'