diff --git a/src/app/components/ProjectCard/styles.module.css b/src/app/components/ProjectCard/styles.module.css index 6e0de8b..c3ca06b 100644 --- a/src/app/components/ProjectCard/styles.module.css +++ b/src/app/components/ProjectCard/styles.module.css @@ -24,7 +24,7 @@ flex-direction: column; justify-content: center; background-color: var(--home); - height: 10rem; + height: 12rem; border-radius: 0 0 0.5rem 0.5rem; padding: 0.25rem 0.5rem; } diff --git a/src/app/globals.css b/src/app/globals.css index c1e7ca6..613fee1 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -32,7 +32,7 @@ body { } body { - font-family: "Roboto", sans-serif; + font-family: "Space Mono", monospace; background-color: var(--background); color: var(--primary); -webkit-font-smoothing: antialiased; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 697ef64..bcdfeb0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,10 +1,10 @@ import type { Metadata } from "next"; import { ThemeProvider } from "next-themes"; -import { Roboto } from "next/font/google"; +import { Space_Mono } from "next/font/google"; import "./globals.css"; -const roboto = Roboto({ weight: ["400", "700"], subsets: ["latin"] }); +const spaceMono = Space_Mono({ weight: ["400", "700"], subsets: ["latin"] }); export const metadata: Metadata = { title: "Laercio Rios", @@ -39,7 +39,7 @@ export default function RootLayout({ }>) { return ( - + {children} diff --git a/src/app/page.module.css b/src/app/page.module.css index 78be6dc..15d6dc5 100644 --- a/src/app/page.module.css +++ b/src/app/page.module.css @@ -246,7 +246,7 @@ } .experience-list { - min-width: 22rem; + min-width: 27rem; list-style-type: none; display: flex; flex-direction: column;