From 4ea8ef57611a12976f84679f6baee7450016c3e1 Mon Sep 17 00:00:00 2001 From: Ash Durham Date: Tue, 10 May 2022 15:06:10 +1000 Subject: [PATCH] Footer updates --- src/components/Footer/Footer.js | 3 ++- src/components/Footer/Footer.module.css | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js index d4173d0..7aba54d 100644 --- a/src/components/Footer/Footer.js +++ b/src/components/Footer/Footer.js @@ -6,6 +6,7 @@ import Container from '../Container'; import Dropdown from '../Dropdown/Dropdown'; import FormInputField from '../FormInputField/FormInputField'; import Icon from '../Icons/Icon'; +import Button from '../Button'; import Config from '../../config.json'; import * as styles from './Footer.module.css'; @@ -111,7 +112,7 @@ const Footer = (prop) => { {Config.paymentOptions.mastercard && {'mastercard'}} {Config.paymentOptions.visa && {'visa'}} - 2021 (c) . Built by Matter. Powered by JAMM + {new Date().getFullYear()} (c) . Built by Powered by diff --git a/src/components/Footer/Footer.module.css b/src/components/Footer/Footer.module.css index 0431d58..4364373 100644 --- a/src/components/Footer/Footer.module.css +++ b/src/components/Footer/Footer.module.css @@ -160,6 +160,10 @@ line-height: 15px; } +.copyrightContainer a { + color: var(--standard-white); +} + .mobileFooterLinks { display: none; }