From 79b0d4aa7e92ed215fbda0761c05a9e02bb5e463 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 27 Nov 2013 00:07:28 -0600 Subject: [PATCH] grid scss cleanup --- scss/_grid.scss | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scss/_grid.scss b/scss/_grid.scss index 802d1180d5..cccc18060d 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -87,37 +87,37 @@ /* columns to take up a certain size of the available area */ .col-10 { @include flex(0, 0, 10%); - max-width: 10% + max-width: 10%; } .col-20 { @include flex(0, 0, 20%); - max-width: 20% + max-width: 20%; } .col-25 { @include flex(0, 0, 25%); - max-width: 25% + max-width: 25%; } .col-33, .col-34 { @include flex(0, 0, 33.3333%); - max-width: 33.3333% + max-width: 33.3333%; } .col-50 { @include flex(0, 0, 50%); - max-width: 50% + max-width: 50%; } .col-66, .col-67 { @include flex(0, 0, 66.6666%); - max-width: 66.6666% + max-width: 66.6666%; } .col-75 { @include flex(0, 0, 75%); - max-width: 75% + max-width: 75%; } .col-80 { @include flex(0, 0, 80%); - max-width: 80% + max-width: 80%; } .col-90 { @include flex(0, 0, 90%); - max-width: 90% + max-width: 90%; }