Skip to content

Commit

Permalink
fix(Select): fix height
Browse files Browse the repository at this point in the history
  • Loading branch information
zouxuoz committed Dec 18, 2018
1 parent 64c82a3 commit c40f2b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Select/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ type SelectProps = {|
const customStyles = ({ hasError, zIndex = Z_INDEX.DROPDOWN }) => ({
control: (style, { isFocused }) => ({
...style,
minHeight: '32px',
maxHeight: '36px',
minHeight: '36px',
backgroundColor: PALETTE.WHITE,
borderColor: hasError ? PALETTE.DANGER : (isFocused ? PALETTE.PRIMARY : PALETTE.LIGHT_GRAY1),
boxShadow: null,
Expand Down

0 comments on commit c40f2b2

Please sign in to comment.