src/app/components/CallToActionLink/index.styles.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { css } from '@emotion/react';

const styles = {
  linkBackground: () =>
    css({
      textDecoration: 'none',
      color: 'inherit',
      '&:hover, &:focus': {
        textDecoration: 'underline',
      },
    }),
  linkTextWrapper: () =>
    css({
      display: 'flex',
      flexDirection: 'row',
      justifyContent: 'center',
    }),
  linkText: () =>
    css({
      verticalAlign: 'middle',
      color: 'inherit',
    }),
};

export default styles;