Skip to content

Commit 8968a00

Browse files
authored
fix: add spacing between the copyright and login box (#5578)
I forgot to commit this before merging my prior PR!
1 parent ebe1b56 commit 8968a00

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

site/src/components/SignInLayout/SignInLayout.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ export const useStyles = makeStyles((theme) => ({
1818
minWidth: "320px",
1919
maxWidth: "320px",
2020
},
21+
copyright: {
22+
marginTop: theme.spacing(2),
23+
},
2124
}))
2225

2326
export const SignInLayout: FC<{ children: ReactNode }> = ({ children }) => {
@@ -27,7 +30,9 @@ export const SignInLayout: FC<{ children: ReactNode }> = ({ children }) => {
2730
<div className={styles.root}>
2831
<div className={styles.layout}>
2932
<div className={styles.container}>{children}</div>
30-
{`\u00a9 ${new Date().getFullYear()} Coder Technologies, Inc.`}
33+
<div className={styles.copyright}>
34+
{`\u00a9 ${new Date().getFullYear()} Coder Technologies, Inc.`}
35+
</div>
3136
</div>
3237
</div>
3338
)

0 commit comments

Comments
 (0)