From: Harry Manchanda Date: Mon, 29 May 2017 15:09:43 +0000 (+0530) Subject: Replaced Main content and sidebar percentages with each other X-Git-Tag: v6.4.0-rc1~26^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10085%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Replaced Main content and sidebar percentages with each other Main content should be obviously bigger than the sidebar ofcourse! --- 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); } } }