time-convertor

Convert time across timezones
git clone http://git.hanabi.in/repos/time-convertor.git
Log | Files | Refs | README | LICENSE

commit 038537356509f216acac897e2781ce4f048bf7d1
parent 18682c657b13540c0159e9d6ef255f594c33520c
Author: Agastya Chandrakant <me@hanabi.in>
Date:   Mon, 18 May 2020 07:20:24 +0530

smaller size

Diffstat:
Msrc/comp/footer.js | 43++++++++++++++++++++++---------------------
1 file changed, 22 insertions(+), 21 deletions(-)

diff --git a/src/comp/footer.js b/src/comp/footer.js @@ -3,28 +3,29 @@ import React from 'react'; function Footer() { const year = new Date().getFullYear(); return ( - <footer className="mt-5 w-100" style={{ bottom: 0, position: 'absolute' }}> + <footer + className="mt-5 w-100" + style={{ bottom: 0, left: 0, position: 'fixed' }} + > <hr /> - <div className="page-footer text-center"> - <h5 aria-level="5"> - Copyright &copy; {year}{' '} - <a - href="https://en.wikinews.org/wiki/User:Acagastya" - target="_blank" - rel="noopener noreferrer" - > - acagastya - </a> - . This project is licensed under{' '} - <a - href="https://opensource.org/licenses/BSD-3-Clause" - target="_blank" - rel="noopener noreferrer" - > - BSD-3-Clause license - </a> - . - </h5> + <div className="page-footer text-center" style={{ padding: '5px' }}> + Copyright &copy; {year}{' '} + <a + href="https://en.wikinews.org/wiki/User:Acagastya" + target="_blank" + rel="noopener noreferrer" + > + acagastya + </a> + . This project is licensed under{' '} + <a + href="https://opensource.org/licenses/BSD-3-Clause" + target="_blank" + rel="noopener noreferrer" + > + BSD-3-Clause license + </a> + . </div> </footer> );