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

26 lines
391 B
JavaScript
Raw Normal View History

import typography from '../typography';
import styled from 'styled-components';
import remcalc from 'remcalc';
export default styled.p`
${typography.normal};
${typography.color};
line-height: ${remcalc(24)};
font-size: ${remcalc(15)};
2017-09-26 19:07:45 +03:00
margin: 0;
+ p,
+ small,
+ h1,
+ h2,
+ label,
+ h3,
+ h4,
+ h5,
+ div,
+ span {
padding-bottom: ${remcalc(36)};
}
`;