From c5e2a03a938f2f178c2d5dc99f536fba6d041de8 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Thu, 14 May 2020 14:29:36 +0300 Subject: [PATCH] Navigation color update --- src/components/layout/Navigation.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/layout/Navigation.js b/src/components/layout/Navigation.js index b9378ed..f521827 100644 --- a/src/components/layout/Navigation.js +++ b/src/components/layout/Navigation.js @@ -5,18 +5,19 @@ import { useTranslation } from "react-i18next"; const Navigation = () => { const { t } = useTranslation(); const activeStyle = { color: "#F15B2A" }; + const style = { color: "#fff" }; return ( <> - + {t("Menu.Home")} {" | "} - + {t("Menu.Sessions")} {" | "} - + {t("Menu.About")}