Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Commit

Permalink
fix(Container): Set default width to 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
kylealwyn committed Aug 8, 2018
1 parent 7ef45ac commit a8cee4c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Grid/Container.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const StyledContainer = createComponent({
}).extend`
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: ${p => (p.fluid ? '100%' : `${p.maxWidth || p.theme.grid.containerMaxWidth}px`)};
padding-left: ${getPadding}px;
padding-right: ${getPadding}px;
Expand Down

0 comments on commit a8cee4c

Please sign in to comment.