From e304a8ae6fead933b839a9889506447400688d9d Mon Sep 17 00:00:00 2001 From: Phantom0110 Date: Tue, 24 Oct 2023 17:26:20 -0400 Subject: [PATCH] Fix styles variable and move Home.module.css to app --- src/{ => app}/Home.module.css | 4 ++-- src/app/page.tsx | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) rename src/{ => app}/Home.module.css (89%) diff --git a/src/Home.module.css b/src/app/Home.module.css similarity index 89% rename from src/Home.module.css rename to src/app/Home.module.css index 7c4b94a..78a34d8 100644 --- a/src/Home.module.css +++ b/src/app/Home.module.css @@ -7,7 +7,7 @@ margin-right: 1em; } -h2 { +.landingBackground h2 { /* TEMPORARY color till global theme is placed*/ color: #057cde; font-size: 1.5em; @@ -16,7 +16,7 @@ h2 { margin-right: 1em; } -p { +.landingBackground p { /* TEMPORARY color till global theme is placed*/ color: #59b1f9; margin-bottom: 0.5rem; diff --git a/src/app/page.tsx b/src/app/page.tsx index 7cc29ba..7459643 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,5 @@ +import styles from "./Home.module.css"; + export default function Home() { return (