From 4b3220fa0cee497535c7bcacf877d35f98f45a6a Mon Sep 17 00:00:00 2001 From: Harry Manchanda Date: Mon, 29 May 2017 20:39:43 +0530 Subject: [PATCH] Replaced Main content and sidebar percentages with each other Main content should be obviously bigger than the sidebar ofcourse! --- docs/pages/grid.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/pages/grid.md b/docs/pages/grid.md index e24d1eb26..07db7e7b0 100644 --- a/docs/pages/grid.md +++ b/docs/pages/grid.md @@ -614,13 +614,13 @@ In this example, the grid is 16 columns instead of the normal 12. Any references .container { @include grid-row(16) { .main-content { - // 5/16 = 31.25% - @include grid-column(5); + // 11/16 = 68.75% + @include grid-column(11); } .sidebar { - // 11/16 = 68.75% - @include grid-column(11); + // 5/16 = 31.25% + @include grid-column(5); } } } -- 2.47.2