Skip to content

Commit dca265b

Browse files
committed
Blockchain: Footer is further updated
1 parent c2042b1 commit dca265b

File tree

2 files changed

+57
-7
lines changed

2 files changed

+57
-7
lines changed

src/shared/components/tc-communities/Footer2/index.jsx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,37 @@ export default function Footer2() {
1414
<div styleName="content">
1515
<TopcoderLogoGray />
1616
<span styleName="copyright">&copy; Topcoder, 2017</span>
17+
<div styleName="right">
18+
<a
19+
href="https://www.topcoder.com/about-topcoder/"
20+
rel="noopener noreferrer"
21+
target="_blank"
22+
>About</a>
23+
&bull;
24+
<a
25+
href="https://help.topcoder.com/hc/en-us/articles/219069687-Contact-Support"
26+
rel="noopener noreferrer"
27+
target="_blank"
28+
>Contact</a>
29+
&bull;
30+
<a
31+
href="https://help.topcoder.com/hc/en-us"
32+
rel="noopener noreferrer"
33+
target="_blank"
34+
>Help</a>
35+
&bull;
36+
<a
37+
href="https://www.topcoder.com/community/how-it-works/privacy-policy/"
38+
rel="noopener noreferrer"
39+
target="_blank"
40+
>Privacy</a>
41+
&bull;
42+
<a
43+
href="https://www.topcoder.com/community/how-it-works/terms/"
44+
rel="noopener noreferrer"
45+
target="_blank"
46+
>Terms</a>
47+
</div>
1748
</div>
1849
</div>
1950
);
Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,36 @@
1+
@mixin font {
2+
color: #787d81;
3+
display: inline-block;
4+
font: 12px 'Open Sans';
5+
line-height: 36px;
6+
vertical-align: top;
7+
}
8+
19
.content {
2-
text-align: center;
10+
margin: auto;
11+
max-width: 960px;
312
}
413

514
.copyright {
6-
bottom: 6px;
7-
color: #787d81;
8-
display: inline-block;
9-
font: 12px 'Open Sans';
10-
left: 24px;
11-
position: relative;
15+
@include font;
16+
17+
margin-left: 24px;
1218
}
1319

1420
.footer {
1521
background: #fafafb;
1622
padding: 24px 24px 18px;
23+
24+
a {
25+
@include font;
26+
27+
margin: 0 6px;
28+
text-decoration: underline;
29+
}
30+
}
31+
32+
.right {
33+
@include font;
34+
35+
float: right;
1736
}

0 commit comments

Comments
 (0)