Footer design
Reviewed By: danielbuechele Differential Revision: D6964900 fbshipit-source-id: 68831f101ef2112613cd170cb90bdd9235441c9d
This commit is contained in:
committed by
Facebook Github Bot
parent
9e0f751464
commit
de8cab8e60
@@ -1,10 +1,17 @@
|
|||||||
.Footer {
|
footer {
|
||||||
background: #1c2126;
|
display: flex;
|
||||||
min-height: 100px;
|
padding: 20px 15px;
|
||||||
color: rgba(255, 255, 255, 0.6);
|
padding-left: 87px;
|
||||||
padding: 20px 0;
|
z-index: 4;
|
||||||
|
align-items: center;
|
||||||
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Footer a {
|
footer a {
|
||||||
color: white;
|
margin: 0 15px;
|
||||||
|
color: #606770;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a:hover {
|
||||||
|
color: #8FD0C6;
|
||||||
}
|
}
|
||||||
|
@@ -11,11 +11,13 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Padded from './Padded';
|
import Link from 'gatsby-link';
|
||||||
import './Footer.css';
|
import './Footer.css';
|
||||||
|
|
||||||
export default () => (
|
export default () => (
|
||||||
<footer className="Footer">
|
<footer className="Footer">
|
||||||
<Padded>footer</Padded>
|
<Link to="/docs">Docs</Link>
|
||||||
|
<Link to="/playground">Playground</Link>
|
||||||
|
<a href="https://github.com/facebook/yoga">GitHub</a>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user