copyright footer

This commit is contained in:
kurpfish 2021-08-17 13:12:08 +03:00
parent 251a87bd85
commit 793ccc7612
3 changed files with 17 additions and 2 deletions

View File

@ -16,8 +16,6 @@
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div>&nbsp 2021 © Outstaffing</div>
</body>
</html>

View File

@ -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;
}

View File

@ -8,7 +8,12 @@ import './index.css';
ReactDOM.render(
<Provider store={store}>
<>
<App />
<footer>
<div>2021 © Outstaffing</div>
</footer>
</>
</Provider>,
document.getElementById('root')
);