-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace all remaining css modules with tailwindcss
- Loading branch information
1 parent
8960793
commit 25e2dae
Showing
37 changed files
with
613 additions
and
401 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import type { ReactNode } from "react"; | ||
|
||
import styles from "@/app/page-content.module.css"; | ||
|
||
interface PageContentProps { | ||
children: ReactNode; | ||
} | ||
|
||
export function PageContent(props: PageContentProps): JSX.Element { | ||
const { children } = props; | ||
|
||
return <main className={styles["container"]}>{children}</main>; | ||
return <main className="p-8">{children}</main>; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
import type { ReactNode } from "react"; | ||
|
||
import styles from "@/features/home/home-page-lead-in.module.css"; | ||
|
||
interface HomePageLeadInProps { | ||
children: ReactNode; | ||
} | ||
|
||
export function HomePageLeadIn(props: HomePageLeadInProps): JSX.Element { | ||
const { children } = props; | ||
|
||
return <p className={styles["text"]}>{children}</p>; | ||
return ( | ||
<p className="max-w-[80ch] text-lg text-gray-700 [&_a:hover]:no-underline [&_a]:underline [&_a]:decoration-dotted"> | ||
{children} | ||
</p> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import type { ReactNode } from "react"; | ||
|
||
import styles from "@/features/home/home-page-title.module.css"; | ||
|
||
interface HomePageTitleProps { | ||
children: ReactNode; | ||
} | ||
|
||
export function HomePageTitle(props: HomePageTitleProps): JSX.Element { | ||
const { children } = props; | ||
|
||
return <h1 className={styles["heading"]}>{children}</h1>; | ||
return <h1 className="text-[2.2rem]">{children}</h1>; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import type { ReactNode } from "react"; | ||
|
||
import styles from "@/features/home/home.layout.module.css"; | ||
|
||
interface HomeLayoutProps { | ||
children: ReactNode; | ||
} | ||
|
||
export function HomeLayout(props: HomeLayoutProps): JSX.Element { | ||
const { children } = props; | ||
|
||
return <div className={styles["container"]}>{children}</div>; | ||
return <div className="grid gap-8">{children}</div>; | ||
} |
Oops, something went wrong.