From b472c15220ead9e93a95e38f2ea992d9df49eb67 Mon Sep 17 00:00:00 2001 From: "roomote[bot]" <219738659+roomote[bot]@users.noreply.github.com> Date: Sun, 25 Jan 2026 01:49:27 -0500 Subject: [PATCH] fix: restore opaque background to settings section headers (#10951) Co-authored-by: Roo Code Co-authored-by: Matt Rubens --- webview-ui/src/components/settings/SectionHeader.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/webview-ui/src/components/settings/SectionHeader.tsx b/webview-ui/src/components/settings/SectionHeader.tsx index 2b690f5711..4f25fd1a75 100644 --- a/webview-ui/src/components/settings/SectionHeader.tsx +++ b/webview-ui/src/components/settings/SectionHeader.tsx @@ -9,7 +9,12 @@ type SectionHeaderProps = HTMLAttributes & { export const SectionHeader = ({ description, children, className, ...props }: SectionHeaderProps) => { return ( -
+

{children}

{description &&

{description}

}