mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
Minor fixes
This commit is contained in:
@@ -1024,7 +1024,7 @@ header.demo h1 span.demoSpan:hover, header.demo h1 span.demoSpan:focus, header.d
|
|||||||
height: 7vw;
|
height: 7vw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.made-with-love a {
|
.made-with-love .link {
|
||||||
color: #ff8787;
|
color: #ff8787;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.made-with-love a {
|
.made-with-love .link {
|
||||||
color: #ff8787
|
color: #ff8787
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import { withRouter, } from 'react-router'
|
||||||
|
import { Link } from 'react-router-dom'
|
||||||
|
|
||||||
const Footer = (props) => {
|
const Footer = (props) => {
|
||||||
return (
|
return (
|
||||||
@@ -6,9 +8,10 @@ const Footer = (props) => {
|
|||||||
{/* <p>
|
{/* <p>
|
||||||
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>.
|
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>.
|
||||||
</p> */}
|
</p> */}
|
||||||
<a href="/credits-page">Credits</a>
|
|
||||||
|
<Link className="link" to='/credits-page'>Credits</Link>
|
||||||
</footer>
|
</footer>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Footer
|
export default withRouter(Footer)
|
||||||
Reference in New Issue
Block a user