Skip to content

Commit

Permalink
Fix styles variable and move Home.module.css to app
Browse files Browse the repository at this point in the history
  • Loading branch information
Phantom0110 committed Oct 24, 2023
1 parent 51f5471 commit e304a8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Home.module.css → src/app/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
margin-right: 1em;
}

h2 {
.landingBackground h2 {
/* TEMPORARY color till global theme is placed*/
color: #057cde;
font-size: 1.5em;
Expand All @@ -16,7 +16,7 @@ h2 {
margin-right: 1em;
}

p {
.landingBackground p {
/* TEMPORARY color till global theme is placed*/
color: #59b1f9;
margin-bottom: 0.5rem;
Expand Down
2 changes: 2 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import styles from "./Home.module.css";

export default function Home() {
return (
<main className={`${styles.centerText} ${styles.landingBackground}`}>
Expand Down

0 comments on commit e304a8a

Please sign in to comment.