This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/components/Tabs.js

19 lines
378 B
JavaScript
Raw Normal View History

2018-08-10 06:14:51 +00:00
// @flow
import styled from "styled-components";
2018-08-10 06:14:51 +00:00
const Tabs = styled.nav`
2019-03-13 05:11:33 +00:00
border-bottom: 1px solid ${props => props.theme.divider};
2018-08-10 06:14:51 +00:00
margin-top: 22px;
margin-bottom: 12px;
2018-08-10 06:14:51 +00:00
`;
export const Separator = styled.span`
border-left: 1px solid ${props => props.theme.divider};
position: relative;
top: 2px;
margin-right: 24px;
margin-top: 6px;
`;
2018-08-10 06:14:51 +00:00
export default Tabs;