Skip to content

Commit

Permalink
🔖 Fixed issue #15 with un-push (v1.3.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasgruwez committed Jun 20, 2017
1 parent 9f94deb commit 66d7ae0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
10 changes: 5 additions & 5 deletions dist/waffle-grid.css
@@ -1,5 +1,5 @@
/*!
* waffle-grid - v1.3.4 - (https://lucasgruwez.github.io/waffle-grid)
* waffle-grid - v1.3.5 - (https://lucasgruwez.github.io/waffle-grid)
* Copyright 2017 Lucas Gruwez.
* Licensed under MIT
* https://lucasgruwez.github.io/waffle-grid
Expand Down Expand Up @@ -254,11 +254,11 @@
}

.m-un-push {
margin-left: 0;
margin-left: 10px;
}

.m-un-pull {
margin-right: 0;
margin-right: 10px;
}

.col-m-1-of-4,.col-m-2-of-8 {
Expand Down Expand Up @@ -417,11 +417,11 @@
}

.s-un-push {
margin-left: 0;
margin-left: 10px;
}

.s-un-pull {
margin-right: 0;
margin-right: 10px;
}

.col-s-1-of-4 {
Expand Down
6 changes: 2 additions & 4 deletions dist/waffle-grid.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/_config.yml
Expand Up @@ -10,10 +10,10 @@ url: lucasgruwez.github.io
baseurl: /waffle-grid

# Custom variables
version: v1.3.4
version: v1.3.5
cdn: https://unpkg.com/waffle-grid
repo: https://github.com/lucasgruwez/waffle-grid
download: https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.4/waffle-grid.min.css
download: https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.5/waffle-grid.min.css
docs: https://github.com/lucasgruwez/waffle-grid/wiki
stargazers: https://github.com/lucasgruwez/waffle-grid/stargazers

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "waffle-grid",
"version": "1.3.4",
"version": "1.3.5",
"description": "An easy to use flexbox grid system",
"main": "dist/waffle-grid.min.css",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions src/waffle-grid.scss
@@ -1,5 +1,5 @@
/*!
* waffle-grid - v1.3.4 - (https://lucasgruwez.github.io/waffle-grid)
* waffle-grid - v1.3.5 - (https://lucasgruwez.github.io/waffle-grid)
* Copyright 2017 Lucas Gruwez.
* Licensed under MIT
* https://lucasgruwez.github.io/waffle-grid
Expand Down Expand Up @@ -102,8 +102,8 @@ $breakpoints: (
@media (max-width: $bp-width) {
.#{$bp-name}-hide {display: none;}
.w-#{$bp-name}-auto {flex: 1}
.#{$bp-name}-un-push {margin-left: 0;}
.#{$bp-name}-un-pull {margin-right: 0;}
.#{$bp-name}-un-push {margin-left: $gutter-width / 2;}
.#{$bp-name}-un-pull {margin-right: $gutter-width / 2;}

@each $col-am in $bp-col-ams {
@for $i from 1 through $col-am {
Expand Down

0 comments on commit 66d7ae0

Please sign in to comment.