From bbe8647160c62804167846df4395a147932ea08c Mon Sep 17 00:00:00 2001 From: Aswin V Date: Thu, 24 Feb 2022 23:31:35 +0530 Subject: [PATCH] Cleanup and use system font --- pages/_document.tsx | 24 ------------------------ styles/globals.css | 8 ++------ 2 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 pages/_document.tsx diff --git a/pages/_document.tsx b/pages/_document.tsx deleted file mode 100644 index 9c030f6..0000000 --- a/pages/_document.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import Document, { Html, Head, Main, NextScript } from 'next/document'; - -class MyDocument extends Document { - render() { - return ( - - - - - - - -
- - - - ); - } -} - -export default MyDocument; diff --git a/styles/globals.css b/styles/globals.css index ad07f16..2cf8478 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -2,16 +2,12 @@ @tailwind components; @tailwind utilities; -.theme-default { - --color-primary: 37 194 160; - --color-secondary: 48 56 70; -} - html, body { padding: 0; margin: 0; - font-family: 'Manrope', sans-serif; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, + 'Helvetica Neue', sans-serif; height: 100%; } #__next {