File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
site/src/components/SignInLayout Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ export const useStyles = makeStyles((theme) => ({
18
18
minWidth : "320px" ,
19
19
maxWidth : "320px" ,
20
20
} ,
21
+ copyright : {
22
+ marginTop : theme . spacing ( 2 ) ,
23
+ } ,
21
24
} ) )
22
25
23
26
export const SignInLayout : FC < { children : ReactNode } > = ( { children } ) => {
@@ -27,7 +30,9 @@ export const SignInLayout: FC<{ children: ReactNode }> = ({ children }) => {
27
30
< div className = { styles . root } >
28
31
< div className = { styles . layout } >
29
32
< 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 >
31
36
</ div >
32
37
</ div >
33
38
)
You can’t perform that action at this time.
0 commit comments