joyent-portal/packages/ui-toolkit/src/text/p.js
2018-01-25 16:50:10 +00:00

35 lines
568 B
JavaScript

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