From 9cde488a578b2890719d8cefc128bd56e29414c1 Mon Sep 17 00:00:00 2001 From: Bruno Quaresma Date: Mon, 9 Jan 2023 19:23:19 +0000 Subject: [PATCH 1/2] refactor: Add spacing in the bottom of a page --- site/src/components/AuthAndFrame/AuthAndFrame.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/site/src/components/AuthAndFrame/AuthAndFrame.tsx b/site/src/components/AuthAndFrame/AuthAndFrame.tsx index c3a5a5ecc7553..f87b4524b9c18 100644 --- a/site/src/components/AuthAndFrame/AuthAndFrame.tsx +++ b/site/src/components/AuthAndFrame/AuthAndFrame.tsx @@ -70,5 +70,6 @@ const useStyles = makeStyles((theme) => ({ }, siteContent: { flex: 1, + paddingBottom: theme.spacing(10) }, })) From d3a4a0cc4367c4f8e23e364d3d5a226beb604337 Mon Sep 17 00:00:00 2001 From: Bruno Quaresma Date: Mon, 9 Jan 2023 19:54:40 +0000 Subject: [PATCH 2/2] Fix fmt --- site/src/components/AuthAndFrame/AuthAndFrame.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/AuthAndFrame/AuthAndFrame.tsx b/site/src/components/AuthAndFrame/AuthAndFrame.tsx index f87b4524b9c18..6eea191491794 100644 --- a/site/src/components/AuthAndFrame/AuthAndFrame.tsx +++ b/site/src/components/AuthAndFrame/AuthAndFrame.tsx @@ -70,6 +70,6 @@ const useStyles = makeStyles((theme) => ({ }, siteContent: { flex: 1, - paddingBottom: theme.spacing(10) + paddingBottom: theme.spacing(10), }, }))