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.`} +
)