Skip to content

Commit

Permalink
fix(multi-select): fix margin types for chips
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo committed Feb 27, 2023
1 parent c10ccb0 commit 2586abb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/select/src/multi-select/selection-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const SelectionList = ({ selected, onChange, disabled, options }) => (
key={value}
onRemove={onRemove}
disabled={isDisabled}
marginBottom="0"
marginLeft="0"
marginTop="0"
marginRight="0"
marginBottom={0}
marginLeft={0}
marginTop={0}
marginRight={0}
overflow
dense
>
Expand Down

0 comments on commit 2586abb

Please sign in to comment.