mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
|
import styled from 'styled-components';
|
||
|
import remcalc from 'remcalc';
|
||
|
import P from '../text/p';
|
||
|
|
||
|
export default styled(P)`
|
||
|
margin: 0 ${remcalc(18)};
|
||
|
color: ${props => props.theme.white};
|
||
|
white-space: nowrap;
|
||
|
`;
|