Skip to content

Commit

Permalink
fix(Dropdown): Fix label in ie 11
Browse files Browse the repository at this point in the history
  • Loading branch information
thyhjwb6 committed Nov 9, 2020
1 parent e966ae1 commit 3e61a7b
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ const StyledSelect = styled(Select)`
border-color: ${color('neutral', '200')};
}
// ie 11 fix: https://github.com/philipwalton/flexbugs/issues/231#issuecomment-362790042
.rn-dropdown__control:after {
content: '';
min-height: inherit;
font-size: 0;
}
.rn-dropdown__placeholder {
color: ${color('neutral', '500')};
}
Expand Down

0 comments on commit 3e61a7b

Please sign in to comment.