diff --git a/src/app/globals.css b/src/app/globals.css index e2828f4..104d828 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -197,4 +197,9 @@ pointer-events: none; z-index: -1; } + + /* Calendar styling - reduce overall size */ + .rdp { + --rdp-cell-size: 36px; + } } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0439016..630e5e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata } from "next"; import "./globals.css"; +import { Providers } from "@/components/Providers"; export const metadata: Metadata = { title: "QuitTraq - Track Your Journey to Quit Smoking", @@ -19,7 +20,7 @@ export default function RootLayout({
- {children} +