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.
Files
outline/app/components/Subheading.js
2019-03-12 22:33:24 -07:00

17 lines
378 B
JavaScript

// @flow
import styled from 'styled-components';
const Subheading = styled.h3`
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.04em;
color: ${props => props.theme.textTertiary};
border-bottom: 1px solid ${props => props.theme.divider};
padding-bottom: 8px;
margin-top: 30px;
margin-bottom: 10px;
`;
export default Subheading;