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

14 lines
255 B
JavaScript
Raw Normal View History

import emotion from 'preact-emotion';
export default emotion('a')`
font-weight: 600;
line-height: 24px;
font-size: 15px;
text-decoration: none;
color: ${props => props.theme.text};
&:hover {
color: ${props => props.theme.primary}
}
`;