Skip to content

Commit

Permalink
FEATURE: Reset the offset on columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Saboteur777 authored and jgthms committed May 17, 2019
1 parent 0751920 commit 99c9815
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions sass/grid/columns.sass
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
.columns.is-mobile > &.is-offset-four-fifths
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
.columns.is-mobile > &.is-#{$i}
flex: none
width: percentage($i / 12)
Expand Down Expand Up @@ -113,7 +113,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-mobile
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
&.is-#{$i}-mobile
flex: none
width: percentage($i / 12)
Expand Down Expand Up @@ -190,7 +190,7 @@ $column-gap: 0.75rem !default
&.is-offset-four-fifths,
&.is-offset-four-fifths-tablet
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
&.is-#{$i},
&.is-#{$i}-tablet
flex: none
Expand Down Expand Up @@ -249,7 +249,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-touch
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
&.is-#{$i}-touch
flex: none
width: percentage($i / 12)
Expand Down Expand Up @@ -306,7 +306,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-desktop
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
&.is-#{$i}-desktop
flex: none
width: percentage($i / 12)
Expand Down Expand Up @@ -363,7 +363,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-widescreen
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
&.is-#{$i}-widescreen
flex: none
width: percentage($i / 12)
Expand Down Expand Up @@ -420,7 +420,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-fullhd
margin-left: 80%
@for $i from 1 through 12
@for $i from 0 through 12
&.is-#{$i}-fullhd
flex: none
width: percentage($i / 12)
Expand Down

0 comments on commit 99c9815

Please sign in to comment.