Changed global.css file extension

This commit is contained in:
Ryan Freeman 2021-11-17 21:47:25 +00:00
parent 0e53ba04fb
commit 42460463c5
2 changed files with 16 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import '@fontsource/inter/400.css'; import '@fontsource/inter/400.css';
import '@fontsource/inter/700.css'; import '@fontsource/inter/700.css';
import '../styles/globals.css'; import '../styles/globals.scss';
function App({Component, pageProps}) { function App({Component, pageProps}) {
return <Component {...pageProps} /> return <Component {...pageProps} />

15
styles/globals.scss Normal file
View File

@ -0,0 +1,15 @@
html,
body {
padding: 0;
margin: 0;
font-family: "Inter", sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}