From 147a165bbcc28bdb50b0f3842a717e4a4dd626c3 Mon Sep 17 00:00:00 2001 From: Lukas Holota Date: Tue, 31 Jan 2023 13:51:44 +0100 Subject: [PATCH] Allow Custom CSS --- src/pages/_app.jsx | 1 + src/styles/custom.css | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 src/styles/custom.css diff --git a/src/pages/_app.jsx b/src/pages/_app.jsx index e99303ab..e304ccae 100644 --- a/src/pages/_app.jsx +++ b/src/pages/_app.jsx @@ -6,6 +6,7 @@ import Head from "next/head"; import "styles/globals.css"; import "styles/theme.css"; import "styles/manrope.css"; +import "styles/custom.css"; import nextI18nextConfig from "../../next-i18next.config"; import { ColorProvider } from "utils/contexts/color"; diff --git a/src/styles/custom.css b/src/styles/custom.css new file mode 100644 index 00000000..cbc9cf6a --- /dev/null +++ b/src/styles/custom.css @@ -0,0 +1,3 @@ +/* +Mount this file and define your custom styles +*/ \ No newline at end of file