Skip to content

Commit

Permalink
Merge pull request #4501 from florentsuc/patch-1
Browse files Browse the repository at this point in the history
Added two more choices of column size: 40% and 60%
  • Loading branch information
mlynch committed Dec 6, 2015
2 parents a03b51b + ebfd4f3 commit 762bfa7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scss/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
Expand Down

0 comments on commit 762bfa7

Please sign in to comment.