feat: add-tool base64 #7

Merged
typist merged 2 commits from feat/add-tool/base64 into main 2025-10-28 04:39:39 +08:00
Showing only changes of commit f960475b0f - Show all commits

View File

@@ -7,12 +7,12 @@ import { AppSidebar } from "@/components/sidebar";
export const Layout: FC = () => (
<SidebarProvider>
<AppSidebar />
<div className="p-4 flex flex-col w-full h-[100vh]">
<div className="p-4 flex flex-col w-full h-[100vh] overflow-hidden">
<nav className="flex items-center justify-between">
<SidebarTrigger className="size-10" />
<div role="actions" />
</nav>
<main className="flex-1 overflow-auto p-4">
<main className="flex-1 overflow-auto p-4 overflow-hidden">
<Outlet />
</main>
</div>