Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix: add spacing between the copyright and login box #5578

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: add spacing between the copyright and login box
I forgot to commit this before merging my prior PR!
  • Loading branch information
kylecarbs committed Jan 4, 2023
commit 057e4dd13ff0ab083467cc119671a95b7aca3ded
7 changes: 6 additions & 1 deletion site/src/components/SignInLayout/SignInLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand All @@ -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>
)
Expand Down