File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed
Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,5 @@ yarn-error.log*
2525.env
2626
2727* .crx
28- * .pem
28+ * .pem
29+ * .zip
Original file line number Diff line number Diff line change @@ -60,6 +60,12 @@ const AppSetup: React.FC<any> = () => {
6060
6161( AppSetup as any ) . whyDidYouRender = true ;
6262
63+ const Copyright = ( ) => (
64+ < div className = "copyright" >
65+ < p > Copyright 2021 © Alek Angelov</ p >
66+ </ div >
67+ ) ;
68+
6369const SubApp = ( ) => {
6470 return (
6571 < >
@@ -76,6 +82,7 @@ const SubApp = () => {
7682 </ div >
7783 </ div >
7884 </ div >
85+ < Copyright />
7986 </ HashRouter >
8087 </ >
8188 ) ;
Original file line number Diff line number Diff line change 220220 grid-gap : 2rem ;
221221 grid-template-rows : 1fr 1fr ;
222222}
223+
224+ .copyright {
225+ position : fixed ;
226+ bottom : 0 ;
227+ right : 0 ;
228+ color : white ;
229+ opacity : 0.2 ;
230+ padding : 1rem ;
231+ p {
232+ margin : 0 ;
233+ font-size : 0.5rem ;
234+ }
235+ }
You can’t perform that action at this time.
0 commit comments