File tree Expand file tree Collapse file tree 8 files changed +35
-24
lines changed Expand file tree Collapse file tree 8 files changed +35
-24
lines changed Original file line number Diff line number Diff line change
1
+ custom : https://paypal.me/lucasgruwez
Original file line number Diff line number Diff line change @@ -71,4 +71,4 @@ typings/
71
71
72
72
# custom gitignored folders
73
73
74
- docs / _jade
74
+ package-lock.json
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ $ npm install waffle-grid
42
42
# or
43
43
$ bower install waffle-grid
44
44
```
45
- If you want you can still download the waffle grid [ here] ( https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.1/waffle-grid.min.css ) .
45
+ If you want you can still download the waffle grid [ here] ( https://github.com/lucasgruwez/waffle-grid/releases ) .
46
46
47
47
## Docs
48
48
Original file line number Diff line number Diff line change 1
1
/*!
2
- * waffle-grid - v1.3.5 - (https://lucasgruwez.github.io/waffle-grid)
2
+ * waffle-grid - v1.3.6 - (https://lucasgruwez.github.io/waffle-grid)
3
3
* Copyright 2017 Lucas Gruwez.
4
4
* Licensed under MIT
5
5
* https://lucasgruwez.github.io/waffle-grid
10
10
}
11
11
12
12
.grid , .row {
13
+ display : -webkit-box;
13
14
display : -ms-flexbox;
14
15
display : flex;
15
16
}
16
17
17
18
.grid {
18
- -ms-flex-direction : column;
19
- flex-direction : column;
19
+ -webkit-box-orient : vertical;
20
+ -webkit-box-direction : normal;
21
+ -ms-flex-direction : column;
22
+ flex-direction : column;
20
23
}
21
24
22
25
.grid .full-width {
25
28
}
26
29
27
30
.row {
28
- -ms-flex-direction : row;
29
- flex-direction : row;
31
+ -webkit-box-orient : horizontal;
32
+ -webkit-box-direction : normal;
33
+ -ms-flex-direction : row;
34
+ flex-direction : row;
30
35
width : 100% ;
31
36
-ms-flex-wrap : wrap;
32
37
flex-wrap : wrap;
33
38
}
34
39
35
40
.col {
36
- box-sizing : border-box;
41
+ -webkit-box-sizing : border-box;
42
+ box-sizing : border-box;
37
43
margin : 10px ;
38
44
vertical-align : top;
39
45
}
47
53
}
48
54
49
55
.w-auto {
50
- -ms-flex : 1 ;
51
- flex : 1 ;
56
+ -webkit-box-flex : 1 ;
57
+ -ms-flex : 1 ;
58
+ flex : 1 ;
52
59
}
53
60
54
61
.col-1-of-4 , .col-2-of-8 , .col-3-of-12 {
249
256
}
250
257
251
258
.w-m-auto {
252
- -ms-flex : 1 ;
253
- flex : 1 ;
259
+ -webkit-box-flex : 1 ;
260
+ -ms-flex : 1 ;
261
+ flex : 1 ;
254
262
}
255
263
256
264
.m-un-push {
412
420
}
413
421
414
422
.w-s-auto {
415
- -ms-flex : 1 ;
416
- flex : 1 ;
423
+ -webkit-box-flex : 1 ;
424
+ -ms-flex : 1 ;
425
+ flex : 1 ;
417
426
}
418
427
419
428
.s-un-push {
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ url: lucasgruwez.github.io
10
10
baseurl : /waffle-grid
11
11
12
12
# Custom variables
13
- version : v1.3.5
13
+ version : v1.3.6
14
14
cdn : https://unpkg.com/waffle-grid
15
15
repo : https://github.com/lucasgruwez/waffle-grid
16
- download : https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.5 /waffle-grid.min.css
16
+ download : https://github.com/lucasgruwez/waffle-grid/releases/download/v1.3.6 /waffle-grid.min.css
17
17
docs : https://github.com/lucasgruwez/waffle-grid/wiki
18
18
stargazers : https://github.com/lucasgruwez/waffle-grid/stargazers
19
19
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " waffle-grid" ,
3
- "version" : " 1.3.5 " ,
3
+ "version" : " 1.3.6 " ,
4
4
"description" : " An easy to use flexbox grid system" ,
5
5
"main" : " dist/waffle-grid.min.css" ,
6
6
"repository" : {
Original file line number Diff line number Diff line change 1
1
/* !
2
- * waffle-grid - v1.3.5 - (https://lucasgruwez.github.io/waffle-grid)
2
+ * waffle-grid - v1.3.6 - (https://lucasgruwez.github.io/waffle-grid)
3
3
* Copyright 2017 Lucas Gruwez.
4
4
* Licensed under MIT
5
5
* https://lucasgruwez.github.io/waffle-grid
@@ -11,6 +11,7 @@ $grid-classname: "grid" !default;
11
11
$row-classname : " row" !default ;
12
12
$column-classname : " col" !default ;
13
13
$container-classname : " container" !default ;
14
+ $helper-prefix : " " !default ;
14
15
15
16
// Column amounts, results in:
16
17
// .col-n-of-4, or .col-n-of-8
@@ -68,10 +69,10 @@ $breakpoints: (
68
69
vertical-align : top ;
69
70
}
70
71
71
- .center {margin-left : auto ; margin-right : auto ;}
72
- .left {margin-right : auto ;}
73
- .right {margin-left : auto ;}
74
- .w-auto {flex : 1 }
72
+ .#{ $helper-prefix } center {margin-left : auto ; margin-right : auto ;}
73
+ .#{ $helper-prefix } left {margin-right : auto ;}
74
+ .#{ $helper-prefix } right {margin-left : auto ;}
75
+ .#{ $helper-prefix } w-auto {flex : 1 }
75
76
76
77
@each $col-am in $grid-columns {
77
78
@for $i from 1 through $col-am {
You can’t perform that action at this time.
0 commit comments