From a8cee4c59a0fa85f100423fafafa56feba474947 Mon Sep 17 00:00:00 2001 From: Kyle Alwyn Date: Wed, 8 Aug 2018 14:57:35 -0700 Subject: [PATCH] fix(Container): Set default width to 100% --- src/Grid/Container.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Grid/Container.js b/src/Grid/Container.js index 3249778..afc8776 100644 --- a/src/Grid/Container.js +++ b/src/Grid/Container.js @@ -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;