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/Subheading.js

18 lines
393 B
JavaScript

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