Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion src/styles/FooterStyles.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
import sizes from "./sizes";

export default {
footer: {
display: "flex",
justifyContent: "space-around",
marginTop: "3rem",
padding: "4rem",

[sizes.down("md")]: {
marginTop: "2rem",
padding: "2rem",
},

[sizes.down("sm")]: {
marginTop: "1rem",
padding: "1.5rem",
flexDirection: "column",
alignItems: "center",
},
},

btn: {
padding: "1.5rem 4rem",
fontFamily: "inherit",
Expand All @@ -14,12 +29,31 @@ export default {
color: "white",
transition: "all .3s",
transform: "translateY(-.5rem)",
boxShadow: "0 .5rem 2rem rgba(0,0,0,.5)",
textDecoration: "none",

[sizes.down("md")]: {
padding: "1rem 2.5rem",
fontSize: "1.6rem",
},

[sizes.down("sm")]: {
marginBottom: "1rem",
textAlign: "center",
boxShadow: "0",
fontSize: "1.3rem",
padding: ".5rem 2.5rem",
transform: "translateY(0)",
borderRadius: "5px",
width: "15rem",
},

"&:hover": {
transform: "translateY(0)",
boxShadow: "0 .25rem 1rem rgba(0,0,0,.25)",

[sizes.down("sm")]: {
boxShadow: "none",
},
},
},

Expand Down