From 78a9a9c4510eece507c3958df9007c249526b003 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Tue, 20 Oct 2020 16:19:02 -0300 Subject: [PATCH] Responsive --- components/core/Navbar/Navbar.tsx | 11 ++++++----- pages/_app.tsx | 3 +++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/components/core/Navbar/Navbar.tsx b/components/core/Navbar/Navbar.tsx index b3026a15b..5b1172754 100644 --- a/components/core/Navbar/Navbar.tsx +++ b/components/core/Navbar/Navbar.tsx @@ -13,14 +13,14 @@ const Navbar: FC = ({ className }) => { const { theme, setTheme } = useTheme() return (
-
+
-
-
+
-
+
@@ -47,7 +47,8 @@ const Navbar: FC = ({ className }) => {
-
+ +
diff --git a/pages/_app.tsx b/pages/_app.tsx index 8b95bcf40..f6c1ffcd8 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,7 +1,10 @@ import '@assets/global.css' import '@assets/tailwind.css' import '@assets/utils.css' + +// To be removed import 'animate.css' + import { FC } from 'react' import type { AppProps } from 'next/app'