Final UI updates for agent

This commit is contained in:
Harivansh Rathi 2024-12-09 13:12:37 -05:00
parent ad932d2dbd
commit 4347289246
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ const DashboardLayout = () => {
<Header />
<div className="flex flex-1 overflow-hidden gap-6 p-6 pt-24">
<Sidebar />
<main className="flex-1 rounded-2xl bg-background shadow-sm border overflow-hidden">
<main className="flex-1 rounded-2xl bg-background shadow-sm overflow-hidden">
<div className="h-full">
<Outlet />
</div>

View file

@ -43,7 +43,7 @@ const Sidebar = () => {
return (
<div className="w-64 shrink-0">
<div className="rounded-2xl bg-background border shadow-sm h-full p-4">
<div className="rounded-2xl bg-background/70 backdrop-blur-lg shadow-lg h-full p-4">
<nav className="space-y-2">
{sidebarItems.map((item) => {
const Icon = item.icon;