File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed
routes/Communities/Blockchain Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Alternative footer for Topcoder sub-communities. It is just a gray stripe,
3
+ * where dark gray TC logo and (c) msg are rendered.
4
+ */
5
+
6
+ import React from 'react' ;
7
+
8
+ import TopcoderLogoGray from '../../../../assets/images/tc-communities/logo_topcoder_gray.svg' ;
9
+ import './style.scss' ;
10
+
11
+ export default function Footer2 ( ) {
12
+ return (
13
+ < div styleName = "footer" >
14
+ < div styleName = "content" >
15
+ < TopcoderLogoGray />
16
+ < span styleName = "copyright" > © Topcoder, 2017</ span >
17
+ </ div >
18
+ </ div >
19
+ ) ;
20
+ }
Original file line number Diff line number Diff line change
1
+ .content {
2
+ text-align : center ;
3
+ }
4
+
5
+ .copyright {
6
+ bottom : 6px ;
7
+ color : #787d81 ;
8
+ display : inline-block ;
9
+ font : 12px ' Open Sans' ;
10
+ left : 24px ;
11
+ position : relative ;
12
+ }
13
+
14
+ .footer {
15
+ background : #fafafb ;
16
+ padding : 24px 24px 18px ;
17
+ }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import ChallengeListingRegisterToSee from
10
10
'components/tc-communities/communities/blockchain/ChallengeListing/RegisterToSee' ;
11
11
12
12
import Error404 from 'components/Error404' ;
13
- import Footer from 'containers /tc-communities/Footer ' ;
13
+ import Footer from 'components /tc-communities/Footer2 ' ;
14
14
import Header from 'containers/tc-communities/Header' ;
15
15
import Home from 'components/tc-communities/communities/blockchain/Home' ;
16
16
import Learn from 'components/tc-communities/communities/blockchain/Learn' ;
You can’t perform that action at this time.
0 commit comments