WIP: Dashboard tabs

This commit is contained in:
Tom Moor
2018-08-09 23:14:51 -07:00
parent d222a311ad
commit 2f681b1ce8
9 changed files with 182 additions and 147 deletions

10
app/components/Tabs.js Normal file
View File

@ -0,0 +1,10 @@
// @flow
import styled from 'styled-components';
const Tabs = styled.nav`
border-bottom: 1px solid ${props => props.theme.slateLight};
margin-top: 22px;
margin-bottom: 10px;
`;
export default Tabs;