Skip to content

Commit

Permalink
chore: add font
Browse files Browse the repository at this point in the history
  • Loading branch information
sohee-K committed Dec 5, 2023
1 parent 921cd6a commit e38a5a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 35 deletions.
34 changes: 3 additions & 31 deletions apps/web/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,31 +1,9 @@
:root {
--max-width: 1100px;
--border-radius: 12px;
--font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
"Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
"Fira Mono", "Droid Sans Mono", "Courier New", monospace;

--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;

--callout-rgb: 20, 20, 20;
--callout-border-rgb: 108, 108, 108;
--card-rgb: 100, 100, 100;
--card-border-rgb: 200, 200, 200;

--glow-conic: conic-gradient(
from 180deg at 50% 50%,
#2a8af6 0deg,
#a853ba 180deg,
#e92a67 360deg
);
}

* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'SUIT', sans-serif;
font-style: normal;
}

html,
Expand All @@ -35,13 +13,7 @@ body {
}

body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
background: rgba(0, 0, 0);
}

a {
Expand Down
5 changes: 1 addition & 4 deletions apps/web/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import "./globals.css";
import type { Metadata } from "next";
import { Inter } from "next/font/google";

const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Create Turborepo",
Expand All @@ -16,7 +13,7 @@ export default function RootLayout({
}): JSX.Element {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body>{children}</body>
</html>
);
}

0 comments on commit e38a5a8

Please sign in to comment.