From 057e4dd13ff0ab083467cc119671a95b7aca3ded Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Wed, 4 Jan 2023 18:42:32 +0000 Subject: [PATCH] fix: add spacing between the copyright and login box I forgot to commit this before merging my prior PR! --- site/src/components/SignInLayout/SignInLayout.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/site/src/components/SignInLayout/SignInLayout.tsx b/site/src/components/SignInLayout/SignInLayout.tsx index 8122e798bfefc..2c484a657a18c 100644 --- a/site/src/components/SignInLayout/SignInLayout.tsx +++ b/site/src/components/SignInLayout/SignInLayout.tsx @@ -18,6 +18,9 @@ export const useStyles = makeStyles((theme) => ({ minWidth: "320px", maxWidth: "320px", }, + copyright: { + marginTop: theme.spacing(2), + }, })) export const SignInLayout: FC<{ children: ReactNode }> = ({ children }) => { @@ -27,7 +30,9 @@ export const SignInLayout: FC<{ children: ReactNode }> = ({ children }) => {
{children}
- {`\u00a9 ${new Date().getFullYear()} Coder Technologies, Inc.`} +
+ {`\u00a9 ${new Date().getFullYear()} Coder Technologies, Inc.`} +
)