Files
outline/app/components/Subheading.js
Tom Moor 59c82f1f06 Dark Mode (#912)
closes #704
2019-03-12 21:35:35 -07:00

17 lines
383 B
JavaScript

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