UNPKG

cra-template-rb

Version:

The official React Boilerplate template for Create React App

16 lines (12 loc) 239 B
import styled from 'styled-components/macro'; export const A = styled.a` color: ${p => p.theme.primary}; text-decoration: none; &:hover { text-decoration: underline; opacity: 0.8; } &:active { opacity: 0.4; } `;