joyent-portal/packages/my-joy-navigation/src/components/anchor.js

15 lines
306 B
JavaScript
Raw Normal View History

import emotion from 'preact-emotion';
2018-03-28 16:26:25 +03:00
import remcalc from 'remcalc';
export default emotion('a')`
font-weight: 600;
2018-03-28 16:26:25 +03:00
line-height: ${remcalc(24)};
font-size: ${remcalc(15)};
text-decoration: none;
color: ${props => props.theme.text};
&:hover {
color: ${props => props.theme.primary}
}
`;