Remove unwanted footer items
Summary: Remove unwanted footer items Reviewed By: emilsjolander Differential Revision: D6999348 fbshipit-source-id: e1ff13b8a5a497bfc54e04294994eddef48bbf94
This commit is contained in:
committed by
Facebook Github Bot
parent
44622912a2
commit
35c6931ade
@@ -14,7 +14,8 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-top: 1px solid #a6dacf;
|
border-top: 1px solid #6BCEBB;
|
||||||
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Footer svg {
|
.Footer svg {
|
||||||
@@ -23,17 +24,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.Footer svg path {
|
.Footer svg path {
|
||||||
fill: #a6dacf;
|
fill: #6BCEBB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Footer .logoOSS {
|
.Footer .logoOSS {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
color: #6BCEBB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Footer a {
|
.Footer a {
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
|
color: #6BCEBB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Footer .SocialNetwork {
|
.Footer .SocialNetwork {
|
||||||
|
@@ -20,18 +20,14 @@ export default class Footer extends Component<{}> {
|
|||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className="Footer">
|
<div className="Footer">
|
||||||
<Link to="/" className="logoOSS">
|
<a href="https://code.facebook.com/projects/" className="logoOSS">
|
||||||
<FacebookOSSLogo />
|
<FacebookOSSLogo />
|
||||||
Facebook Open Source
|
Facebook Open Source
|
||||||
</Link>
|
|
||||||
<div className="SocialNetwork">
|
|
||||||
<a href="https://code.facebook.com/projects/">Open Source</a>
|
|
||||||
<a href="https://github.com/facebook/">Github</a>
|
|
||||||
<a href="https://twitter.com/fbOpenSource">Twitter</a>
|
|
||||||
</div>
|
|
||||||
<a href="https://github.com/facebook/yoga">
|
|
||||||
Contribute to this project on Github
|
|
||||||
</a>
|
</a>
|
||||||
|
<div className="SocialNetwork">
|
||||||
|
<a href="https://github.com/facebook/yoga">Github</a>
|
||||||
|
<a href="https://twitter.com/yogalayout">Twitter</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user