mirror of
https://github.com/outline/outline.git
synced 2026-06-24 00:34:22 +03:00
7db0be0a6a
feat: Improved readability of tabs and subheadings
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const Tabs = styled.nav`
|
|
border-bottom: 1px solid ${props => props.theme.divider};
|
|
margin-top: 22px;
|
|
margin-bottom: 12px;
|
|
`;
|
|
|
|
export default Tabs;
|