This commit is contained in:
asp_ly 2024-12-27 21:30:57 +08:00
parent 6b34ae7f72
commit 07ce66be11
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ export function AppMenu({ openKeys, onOpenChange }: AppMenuProps) {
return (
<Sidebar>
<SidebarHeader>
<div className="text-lg font-semibold">Deploy Ease</div>
<div className="text-lg font-semibold text-slate-900">Deploy Ease</div>
</SidebarHeader>
<SidebarContent>
<MenuGroup>

View File

@ -33,9 +33,9 @@ const SidebarHeader = React.forwardRef<
<div
ref={ref}
className={cn(
"flex h-14 items-center border-b px-4 sticky top-0 z-10",
"dark:border-slate-700 dark:bg-slate-900/50",
"bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60",
"flex h-16 items-center border-b bg-background px-6",
"z-40",
"shadow-sm",
className
)}
{...props}