diff --git a/src/components/Select/index.js b/src/components/Select/index.js index eefbac2a..33af82a4 100644 --- a/src/components/Select/index.js +++ b/src/components/Select/index.js @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import ReactSelect from 'react-select'; import ReactAsyncSelect from 'react-select/lib/Async'; import colors from 'config/colors'; -import { FONT_FAMILY } from 'config/variables'; const styles = isSearchable => ({ singleValue: base => ({ @@ -13,7 +12,6 @@ const styles = isSearchable => ({ }), control: (base, { isDisabled }) => ({ ...base, - fontFamily: FONT_FAMILY.MONOSPACE, minHeight: 'initial', height: '100%', borderRadius: '2px', @@ -45,7 +43,6 @@ const styles = isSearchable => ({ menuList: base => ({ ...base, padding: 0, - fontFamily: FONT_FAMILY.MONOSPACE, boxShadow: 'none', background: colors.WHITE, borderLeft: `1px solid ${colors.DIVIDER}`,