From 6a889c6cb4981692c6354dbdc9ad5acd749749e9 Mon Sep 17 00:00:00 2001 From: Nick Pack Date: Fri, 17 May 2013 16:14:20 +0100 Subject: [PATCH] Updated mobile grid styles inline with changes made to mixin --- scss/_grid.scss | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scss/_grid.scss b/scss/_grid.scss index 63a6354..95b27e7 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -53,8 +53,19 @@ & .fifteen, & .sixteen, & .one-third, - & .two-thirds { width: $mobile-column-width; } + & .two-thirds, + & .one-half, + & .one-quarter, + & .three-quarters + { width: $mobile-column-width; } + +/* +.two-thirds { width: (($grid-container-width/3)*2) - $grid-gutter; } + .one-half { width: ($grid-container-width/2) - $grid-gutter; } + .one-quarter { width: ($grid-container-width/4) - $grid-gutter; } + .three-quarters {width: (($grid-container-width/4)*3) - $grid-gutter;} + */ .column, .columns { margin: 0; }