Skip to content

Commit

Permalink
fix(list): fix padding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbien committed Apr 9, 2020
1 parent 972ecc1 commit afc79de
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/List/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ import { createBorderStyles, createBoxStyles } from '../common';

const StyledList = styled.ul`
box-sizing: border-box;
width: ${props => (props.fullWidth ? '100%' : 'auto')};
padding: 2px 4px 4px 2px;
padding: 4px;
${createBorderStyles({ windowBorders: true })}
${createBoxStyles()}
${props =>
Expand Down

0 comments on commit afc79de

Please sign in to comment.