mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
fix: add semi-transparent background to Settings header for readability
This commit is contained in:
parent
c1f7099698
commit
d7d4d091a9
1 changed files with 7 additions and 1 deletions
|
|
@ -12,7 +12,13 @@ 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 backdrop-blur-sm",
|
||||
"bg-[color-mix(in_srgb,var(--vscode-editor-background)_85%,transparent)]",
|
||||
className,
|
||||
)}
|
||||
{...props}>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue