diff --git a/src/app/global.scss b/src/app/global.scss index d622491..fcc10f3 100644 --- a/src/app/global.scss +++ b/src/app/global.scss @@ -15,4 +15,10 @@ flex-direction: column; justify-content: space-between; align-items: center; -} \ No newline at end of file +} + +@keyframes fade { + 0% { + opacity: 0; + } +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f952ee6..68efaf6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,14 +5,19 @@ import "@/app/global.scss"; export default function Layout({ children }: { children: React.ReactNode }) { return (