1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-23 08:04:28 -04:00

scss ➡️ vanilla css (#727)

* scss isn't worth the technical/mental overhead anymore

* try to translate my old Hugo pygments themes

* update lockfile

* consolidate .hljs classes
This commit is contained in:
2022-01-07 16:17:14 -05:00
committed by GitHub
parent b13923b3b7
commit 41d2b8c64b
43 changed files with 700 additions and 729 deletions

View File

@@ -14,10 +14,10 @@ import meJpg from "../public/static/images/me.jpg";
// global styles
import "modern-normalize/modern-normalize.css";
import "../styles/colors.scss";
import "../styles/typography.scss";
import "../styles/highlight.scss";
import "../styles/index.scss";
import "../styles/colors.css";
import "../styles/typography.css";
import "../styles/highlight.css";
import "../styles/index.css";
const App = ({ Component, pageProps }: AppProps) => {
const router = useRouter();