joyent-portal/packages/ui-toolkit/src/text/p.js

24 lines
343 B
JavaScript

import styled from 'styled-components';
import remcalc from 'remcalc';
export default styled.p`
color: ${props => props.theme.text};
line-height: ${remcalc(24)};
font-size: ${remcalc(15)};
margin: 0;
+ p,
+ small,
+ h1,
+ h2,
+ label,
+ h3,
+ h4,
+ h5,
+ div,
+ span {
padding-bottom: ${remcalc(36)};
}
`;