Skip to content

Commit

Permalink
chore: resolve prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jotalis committed Nov 7, 2024
1 parent 2a52715 commit fef9fb7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions apps/site/src/app/not-found.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
align-items: start;
justify-content: center;
height: 80vh;
background: url('~@/assets/background/anteater-fishing-background.png') center / cover;
background: url("~@/assets/background/anteater-fishing-background.png") center /
cover;
}

.content {
Expand All @@ -15,7 +16,8 @@
line-height: 1.5;
}

.heading, .subtext {
.heading,
.subtext {
margin: 0 auto;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
Expand All @@ -35,7 +37,7 @@
}

.subtext {
font-size: 1.5rem;
font-size: 1.5rem;
font-weight: 400;
color: theme.$white;
max-width: 60%;
Expand Down
10 changes: 5 additions & 5 deletions apps/site/src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import styles from './not-found.module.scss';
import styles from "./not-found.module.scss";

export default function NotFoundPage() {
return (
<div
className={styles['not-found-page']}
>
<div className={styles["not-found-page"]}>
<div className={styles.content}>
<h1 className={styles.heading}>404</h1>
<p className={styles.subtext}>Gone fishing! Seems this page got away…</p>
<p className={styles.subtext}>
Gone fishing! Seems this page got away…
</p>
</div>
</div>
);
Expand Down

0 comments on commit fef9fb7

Please sign in to comment.