Merge pull request #25 from apuc/authentication

copyright footer
This commit is contained in:
kavalar 2021-08-17 13:12:42 +03:00 committed by GitHub
commit 38f055c750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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')
); );