Skip to content

Commit

Permalink
fix box sizing issue with variants
Browse files Browse the repository at this point in the history
  • Loading branch information
duncan-thacker committed Mar 1, 2019
1 parent 154f6a5 commit cc32c1f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.5.1 - released 01/03/2019
* Fix issue where "outlined" and "filled" variants would sometimes be too wide for their containers

# 1.5.0 - released 01/03/2019
* Add `maxDropdownHeight` prop to allow for scrollable dropdowns
* Make docs work better on mobile devices
Expand Down
6 changes: 3 additions & 3 deletions docs/docs-bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "material-multi-picker",
"version": "1.5.0",
"version": "1.5.1",
"description": "A typeahead multiselect component for React and Material UI",
"main": "lib/index.js",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion src/PickerInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const styles = theme => ({
InputRoot: {
display: "flex",
flexWrap: "wrap",
padding: `${ theme.spacing.unit * ONE_HALF }px 0`
padding: `${ theme.spacing.unit * ONE_HALF }px 0`,
boxSizing: "border-box"
},
InputLabelRoot: {
top: theme.spacing.unit
Expand Down

0 comments on commit cc32c1f

Please sign in to comment.