refactor: Add vertical space to the footer (#1410)

This commit is contained in:
Bruno Quaresma
2022-05-12 12:28:20 -05:00
committed by GitHub
parent 26b04cc96f
commit a629a705d0
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -39,8 +39,9 @@ export const Footer: React.FC = ({ children }) => {
const useFooterStyles = makeStyles((theme) => ({
root: {
textAlign: "center",
marginBottom: theme.spacing(5),
flex: "0",
paddingTop: theme.spacing(2),
paddingBottom: theme.spacing(2),
},
copyRight: {
margin: theme.spacing(0.25),
+1 -1
View File
@@ -17,7 +17,7 @@ export const useStyles = makeStyles((theme) => ({
layout: {
display: "flex",
flexDirection: "column",
gap: theme.spacing(4),
gap: theme.spacing(2),
alignItems: "center",
},
container: {