minor fixes

This commit is contained in:
2022-02-03 21:30:09 -03:00
parent 3718de33bc
commit 90c66e231d
2 changed files with 12 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ const Crypto = () => {
const CryptoStyles = styled(Grid)`
height: 100vh;
height: 87vh;
header {

View File

@@ -28,21 +28,26 @@ const Footer = () => {
return (
<footer
style={{
fontFamily: "Raleway",
color:"#fff",
marginTop: "3vh",
display: "flex",
alignItems: "center",
width: "100%",
paddingTop: "4vh",
paddingBottom: "4vh",
height: "10vh",
paddingLeft: "3vw",
marginTop: "3vh",
boxSizing: "border-box",
backgroundColor: "#00000036"
}}
>
Made with 💓 by <a style={{color: "#1f5ebd"}} href="https://porfolio-franp.netlify.app" rel="noreferrer" target="_blank">Francisco Pessano</a>
Made with 💓 by <a style={{color: "#fff023", marginLeft: "5px"}} href="https://porfolio-franp.netlify.app" rel="noreferrer" target="_blank">Francisco Pessano</a>
</footer>
)
}