Toolbar expand and collapse does not influence workflow

This commit is contained in:
Emir Karabeg
2025-01-28 21:09:50 -08:00
parent 293aff8508
commit 1152f6f494
2 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ export function Toolbar() {
} }
return ( return (
<div className="relative z-1 hidden h-[calc(100vh-4rem)] overflow-y-auto w-64 border-r bg-background sm:block"> <div className="fixed left-14 top-16 z-10 h-[calc(100vh-4rem)] overflow-y-auto w-64 border-r bg-background sm:block">
<div className="px-4 pt-4"> <div className="px-4 pt-4">
<div className="relative"> <div className="relative">
<Search className="absolute left-3 top-[50%] h-4 w-4 -translate-y-[50%] text-muted-foreground" /> <Search className="absolute left-3 top-[50%] h-4 w-4 -translate-y-[50%] text-muted-foreground" />

View File

@@ -14,9 +14,9 @@ export default function WorkspaceLayout({
<Sidebar /> <Sidebar />
<div className="flex-1 flex flex-col pl-14"> <div className="flex-1 flex flex-col pl-14">
<ControlBar /> <ControlBar />
<div className="flex flex-1 h-16"> <div className="h-16">
<Toolbar /> <Toolbar />
<main className="flex-1 grid items-start gap-2 bg-muted/40 h-[calc(100vh-4rem)]"> <main className="grid items-start gap-2 bg-muted/40 h-[calc(100vh-4rem)]">
{children} {children}
</main> </main>
</div> </div>