Skip to content

Commit

Permalink
feat: change font family
Browse files Browse the repository at this point in the history
  • Loading branch information
LaercioSR committed Oct 14, 2024
1 parent 4e76855 commit 17a14b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/components/ProjectCard/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -39,7 +39,7 @@ export default function RootLayout({
}>) {
return (
<html suppressHydrationWarning>
<body className={roboto.className}>
<body className={spaceMono.className}>
<ThemeProvider themes={["light", "dark"]}>{children}</ThemeProvider>
</body>
</html>
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
}

.experience-list {
min-width: 22rem;
min-width: 27rem;
list-style-type: none;
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 17a14b5

Please sign in to comment.