diff --git a/pipes/search/src/app/globals.css b/pipes/search/src/app/globals.css index 459287407e..995184a01d 100644 --- a/pipes/search/src/app/globals.css +++ b/pipes/search/src/app/globals.css @@ -33,6 +33,14 @@ body { --chart-4: 43 74% 66%; --chart-5: 27 87% 67%; --radius: 0.5rem; + --sidebar-background: 0 0% 98%; + --sidebar-foreground: 240 5.3% 26.1%; + --sidebar-primary: 240 5.9% 10%; + --sidebar-primary-foreground: 0 0% 98%; + --sidebar-accent: 240 4.8% 95.9%; + --sidebar-accent-foreground: 240 5.9% 10%; + --sidebar-border: 220 13% 91%; + --sidebar-ring: 217.2 91.2% 59.8%; } .dark { --background: 0 0% 3.9%; @@ -59,6 +67,14 @@ body { --chart-3: 30 80% 55%; --chart-4: 280 65% 60%; --chart-5: 340 75% 55%; + --sidebar-background: 240 5.9% 10%; + --sidebar-foreground: 240 4.8% 95.9%; + --sidebar-primary: 224.3 76.3% 48%; + --sidebar-primary-foreground: 0 0% 100%; + --sidebar-accent: 240 3.7% 15.9%; + --sidebar-accent-foreground: 240 4.8% 95.9%; + --sidebar-border: 240 3.7% 15.9%; + --sidebar-ring: 217.2 91.2% 59.8%; } } @@ -81,3 +97,12 @@ body { transform: translate(-50%, -50%) !important; } +@layer base { + * { + @apply border-border; + } + body { + @apply bg-background text-foreground; + } +} + diff --git a/pipes/search/src/app/layout.tsx b/pipes/search/src/app/layout.tsx index adb6ff7fa4..770f39f8d0 100644 --- a/pipes/search/src/app/layout.tsx +++ b/pipes/search/src/app/layout.tsx @@ -2,6 +2,8 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Toaster } from "@/components/ui/toaster"; +import { SidebarProvider, SidebarTrigger } from "@/components/ui/sidebar" +import { HistorySidebar } from "@/components/history-sidebar" const geistSans = Geist({ variable: "--font-geist-sans", @@ -27,11 +29,22 @@ export default function RootLayout({ return (
- {children} - -where pixels become magic
-where pixels become magic
+