From ebfd4f32643a2846d9edeb80d6ec2eaebeb9ce12 Mon Sep 17 00:00:00 2001 From: Florent Suc Date: Sat, 10 Oct 2015 19:37:03 +0200 Subject: [PATCH] Added two more choices of column size: 40% and 60% --- scss/_grid.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scss/_grid.scss b/scss/_grid.scss index 9129c42d836..cb3a97b5b71 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -118,10 +118,18 @@ @include flex(0, 0, 33.3333%); max-width: 33.3333%; } +.col-40 { + @include flex(0, 0, 40%); + max-width: 40%; +} .col-50 { @include flex(0, 0, 50%); max-width: 50%; } +.col-60 { + @include flex(0, 0, 60%); + max-width: 60%; +} .col-66, .col-67 { @include flex(0, 0, 66.6666%); max-width: 66.6666%;