Skip to content

Commit 66d7ae0

Browse files
committed
🔖 Fixed issue #15 with un-push (v1.3.5)
1 parent 9f94deb commit 66d7ae0

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

dist/waffle-grid.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* waffle-grid - v1.3.4 - (https://lucasgruwez.github.io/waffle-grid)
2+
* waffle-grid - v1.3.5 - (https://lucasgruwez.github.io/waffle-grid)
33
* Copyright 2017 Lucas Gruwez.
44
* Licensed under MIT
55
* https://lucasgruwez.github.io/waffle-grid
@@ -254,11 +254,11 @@
254254
}
255255

256256
.m-un-push {
257-
margin-left: 0;
257+
margin-left: 10px;
258258
}
259259

260260
.m-un-pull {
261-
margin-right: 0;
261+
margin-right: 10px;
262262
}
263263

264264
.col-m-1-of-4,.col-m-2-of-8 {
@@ -417,11 +417,11 @@
417417
}
418418

419419
.s-un-push {
420-
margin-left: 0;
420+
margin-left: 10px;
421421
}
422422

423423
.s-un-pull {
424-
margin-right: 0;
424+
margin-right: 10px;
425425
}
426426

427427
.col-s-1-of-4 {

dist/waffle-grid.min.css

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ url: lucasgruwez.github.io
1010
baseurl: /waffle-grid
1111

1212
# Custom variables
13-
version: v1.3.4
13+
version: v1.3.5
1414
cdn: https://unpkg.com/waffle-grid
1515
repo: https://github.com/lucasgruwez/waffle-grid
16-
download: https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.4/waffle-grid.min.css
16+
download: https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.5/waffle-grid.min.css
1717
docs: https://github.com/lucasgruwez/waffle-grid/wiki
1818
stargazers: https://github.com/lucasgruwez/waffle-grid/stargazers
1919

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "waffle-grid",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"description": "An easy to use flexbox grid system",
55
"main": "dist/waffle-grid.min.css",
66
"repository": {

src/waffle-grid.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* waffle-grid - v1.3.4 - (https://lucasgruwez.github.io/waffle-grid)
2+
* waffle-grid - v1.3.5 - (https://lucasgruwez.github.io/waffle-grid)
33
* Copyright 2017 Lucas Gruwez.
44
* Licensed under MIT
55
* https://lucasgruwez.github.io/waffle-grid
@@ -102,8 +102,8 @@ $breakpoints: (
102102
@media (max-width: $bp-width) {
103103
.#{$bp-name}-hide {display: none;}
104104
.w-#{$bp-name}-auto {flex: 1}
105-
.#{$bp-name}-un-push {margin-left: 0;}
106-
.#{$bp-name}-un-pull {margin-right: 0;}
105+
.#{$bp-name}-un-push {margin-left: $gutter-width / 2;}
106+
.#{$bp-name}-un-pull {margin-right: $gutter-width / 2;}
107107

108108
@each $col-am in $bp-col-ams {
109109
@for $i from 1 through $col-am {

0 commit comments

Comments
 (0)