Skip to content

Commit

Permalink
Fix styles variable and move Home.module.css to app (#15)
Browse files Browse the repository at this point in the history
* Fix styles variable and move Home.module.css to app

* Removed colors from Home.module.css and changed landingTitle to landingBackground h1
  • Loading branch information
Phantom0110 authored Oct 25, 2023
1 parent 4223944 commit 6a91fc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/Home.module.css → src/app/Home.module.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
.landingTitle {
/* TEMPORARY color till global theme is placed*/
color: #035496;
.landingBackground h1 {
font-size: 2em;
margin-bottom: 1rem;
margin-left: 1em;
margin-right: 1em;
}

h2 {
/* TEMPORARY color till global theme is placed*/
color: #057cde;
.landingBackground h2 {
font-size: 1.5em;
margin-bottom: 0.5rem;
margin-left: 1em;
margin-right: 1em;
}

p {
/* TEMPORARY color till global theme is placed*/
color: #59b1f9;
.landingBackground p {
margin-bottom: 0.5rem;
margin-left: 1em;
margin-right: 1em;
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 6a91fc3

Please sign in to comment.