diff --git a/src/components/inputs/Input/index.js b/src/components/inputs/Input/index.js index 65d1591b..46b4a6b5 100644 --- a/src/components/inputs/Input/index.js +++ b/src/components/inputs/Input/index.js @@ -4,7 +4,12 @@ import styled, { css } from 'styled-components'; import colors from 'config/colors'; import ICONS from 'config/icons'; import Icon from 'components/Icon'; -import { FONT_SIZE, FONT_WEIGHT, TRANSITION } from 'config/variables'; +import { + FONT_SIZE, + FONT_WEIGHT, + TRANSITION, + FONT_FAMILY, +} from 'config/variables'; const Wrapper = styled.div` width: 100%; @@ -33,8 +38,9 @@ const StyledInput = styled.input` padding: 6px 12px; line-height: 1.42857143; + font-family: ${FONT_FAMILY.MONOSPACE}; font-size: ${FONT_SIZE.SMALL}; - font-weight: ${FONT_WEIGHT.SMALLEST}; + font-weight: ${FONT_WEIGHT.BASE}; color: ${colors.TEXT_PRIMARY}; border-radius: 2px;