diff --git a/src/js/components/Link/index.js b/src/js/components/Link/index.js index 9bb197d8..8040a1b4 100644 --- a/src/js/components/Link/index.js +++ b/src/js/components/Link/index.js @@ -1,13 +1,14 @@ import React from 'react'; import styled, { css } from 'styled-components'; import PropTypes from 'prop-types'; -import { TRANSITION } from 'config/variables'; +import { FONT_SIZE, TRANSITION } from 'config/variables'; import colors from 'config/colors'; const A = styled.a` text-decoration: none; cursor: pointer; transition: ${TRANSITION.HOVER}; + font-size: ${FONT_SIZE.SMALLER}; ${props => props.isGreen && css` border-bottom: 1px solid ${colors.GREEN_PRIMARY};