Skip to content

Commit a629a70

Browse files
refactor: Add vertical space to the footer (#1410)
1 parent 26b04cc commit a629a70

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

site/src/components/Footer/Footer.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ export const Footer: React.FC = ({ children }) => {
3939
const useFooterStyles = makeStyles((theme) => ({
4040
root: {
4141
textAlign: "center",
42-
marginBottom: theme.spacing(5),
4342
flex: "0",
43+
paddingTop: theme.spacing(2),
44+
paddingBottom: theme.spacing(2),
4445
},
4546
copyRight: {
4647
margin: theme.spacing(0.25),

site/src/pages/LoginPage/LoginPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const useStyles = makeStyles((theme) => ({
1717
layout: {
1818
display: "flex",
1919
flexDirection: "column",
20-
gap: theme.spacing(4),
20+
gap: theme.spacing(2),
2121
alignItems: "center",
2222
},
2323
container: {

0 commit comments

Comments
 (0)