mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
fix: add semi-transparent background to Settings header for better readability
This commit is contained in:
parent
c1f7099698
commit
022a2794cd
1 changed files with 6 additions and 1 deletions
|
|
@ -12,7 +12,12 @@ export const Tab = ({ className, children, ...props }: TabProps) => (
|
|||
)
|
||||
|
||||
export const TabHeader = ({ className, children, ...props }: TabProps) => (
|
||||
<div className={cn("px-5 py-2.5 border-b border-vscode-panel-border", className)} {...props}>
|
||||
<div
|
||||
className={cn(
|
||||
"px-5 py-2.5 border-b border-vscode-panel-border bg-vscode-sideBar-background/95 backdrop-blur-sm z-10",
|
||||
className,
|
||||
)}
|
||||
{...props}>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue