From 0b93bd037c3e37ff00b09a5598e4edb89fd5ed26 Mon Sep 17 00:00:00 2001 From: P Bharat Kumar Reddy Date: Tue, 17 Jan 2017 15:16:43 +0530 Subject: [PATCH] Fixed issue #227 Fixed the .row overflow when using .col-xs-* class. This bug is caused by increasing the width of .row greater than the body element. --- dist/flexboxgrid.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/flexboxgrid.css b/dist/flexboxgrid.css index 6fe4553b..42994f36 100644 --- a/dist/flexboxgrid.css +++ b/dist/flexboxgrid.css @@ -5,6 +5,7 @@ } .container-fluid { + max-width: 100%; padding-right: 2rem; padding-left: 2rem; } @@ -957,4 +958,4 @@ -ms-flex-order: 1; order: 1; } -} \ No newline at end of file +}