Skip to content

Commit b1b725b

Browse files
committed
fix(grid)grid: makes offsets for s1 and s2 consistent with l and m
Offsets for 's' were not consistent with 'l' and 'm' causing unexpected behaviour. Now they all work the same Fixes: #657
1 parent 55189cf commit b1b725b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sass/_grid.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ body {
6565
.s11 { grid-column: auto / span 11; }
6666
.s12 { grid-column: auto / span 12; }
6767

68-
.offset-s1 { grid-column-start: 3; }
69-
.offset-s2 { grid-column-start: 2; }
68+
.offset-s1 { grid-column-start: 2; }
69+
.offset-s2 { grid-column-start: 3; }
7070
.offset-s3 { grid-column-start: 4; }
7171
.offset-s4 { grid-column-start: 5; }
7272
.offset-s5 { grid-column-start: 6; }

0 commit comments

Comments
 (0)