Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit f64bdd3

Browse files
committed
Merge branch 'main' into add-firmware.ai-provider
2 parents 1ddc38f + 953c777 commit f64bdd3

14 files changed

Lines changed: 425 additions & 433 deletions

File tree

locales/zh-TW/CODE_OF_CONDUCT.md

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/zh-TW/CONTRIBUTING.md

Lines changed: 46 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/zh-TW/README.md

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ type SectionHeaderProps = HTMLAttributes<HTMLDivElement> & {
99

1010
export const SectionHeader = ({ description, children, className, ...props }: SectionHeaderProps) => {
1111
return (
12-
<div className={cn("sticky top-0 z-10 text-vscode-sideBar-foreground px-5 pt-6 pb-4", className)} {...props}>
12+
<div
13+
className={cn(
14+
"sticky top-0 z-10 text-vscode-sideBar-foreground bg-vscode-sideBar-background px-5 pt-6 pb-4",
15+
className,
16+
)}
17+
{...props}>
1318
<h3 className="text-[1.25em] font-semibold text-vscode-foreground m-0">{children}</h3>
1419
{description && <p className="text-vscode-descriptionForeground text-sm mt-2 mb-0">{description}</p>}
1520
</div>

0 commit comments

Comments
 (0)