From af2409127c6242281498e9559913b901663fd0de Mon Sep 17 00:00:00 2001 From: HectorMtz22 Date: Wed, 28 Jul 2021 15:40:02 -0500 Subject: [PATCH] 404 Experiment failed && Style Footer --- components/Footer/style.ts | 4 +++- pages/404.tsx | 5 ----- 2 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 pages/404.tsx diff --git a/components/Footer/style.ts b/components/Footer/style.ts index f3a3734..505869e 100644 --- a/components/Footer/style.ts +++ b/components/Footer/style.ts @@ -13,8 +13,10 @@ export const Nav = styled(BottomNavigation)({ }); export const NavButton = styled(BottomNavigationAction)({ - color: theme.colors.primaryVariant, + color: "#ddd", "&.Mui-selected": { color: "#fff", + fontWeight: "bold", + fontSize: "1rem", }, }); diff --git a/pages/404.tsx b/pages/404.tsx deleted file mode 100644 index 3e7d841..0000000 --- a/pages/404.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const NotFoundPage = () => { - return

La página que buscas no está

; -}; - -export default NotFoundPage;