From 793ccc761200741d49f9a2eeff4be19f6877e683 Mon Sep 17 00:00:00 2001 From: kurpfish Date: Tue, 17 Aug 2021 13:12:08 +0300 Subject: [PATCH] copyright footer --- public/index.html | 2 -- src/index.css | 12 ++++++++++++ src/index.js | 5 +++++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index ba366d94..1f907f5d 100644 --- a/public/index.html +++ b/public/index.html @@ -16,8 +16,6 @@
- -
  2021 © Outstaffing
\ No newline at end of file diff --git a/src/index.css b/src/index.css index afe25df0..f37a6ba1 100644 --- a/src/index.css +++ b/src/index.css @@ -21,3 +21,15 @@ code { h1 { display: none; } + +footer { + padding: 0 5rem; +} + +footer>div { + border-top: 2px solid #73c141; + padding: 1rem; + font-family: 'Muller'; + font-weight: 300; + font-size: 1.2em; +} \ No newline at end of file diff --git a/src/index.js b/src/index.js index aea2241d..ce785e70 100644 --- a/src/index.js +++ b/src/index.js @@ -8,7 +8,12 @@ import './index.css'; ReactDOM.render( + <> + + , document.getElementById('root') );