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> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div> <div id="root"></div>
<div>&nbsp 2021 © Outstaffing</div>
</body> </body>
</html> </html>

View File

@ -21,3 +21,15 @@ code {
h1 { h1 {
display: none; 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( ReactDOM.render(
<Provider store={store}> <Provider store={store}>
<>
<App /> <App />
<footer>
<div>2021 © Outstaffing</div>
</footer>
</>
</Provider>, </Provider>,
document.getElementById('root') document.getElementById('root')
); );