mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: add spacing between the copyright and login box (#5578)
I forgot to commit this before merging my prior PR!
This commit is contained in:
@@ -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 }) => {
|
||||
<div className={styles.root}>
|
||||
<div className={styles.layout}>
|
||||
<div className={styles.container}>{children}</div>
|
||||
{`\u00a9 ${new Date().getFullYear()} Coder Technologies, Inc.`}
|
||||
<div className={styles.copyright}>
|
||||
{`\u00a9 ${new Date().getFullYear()} Coder Technologies, Inc.`}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user