Skip to content

Commit ce7eae9

Browse files
committed
Version 0.3.2
1 parent f6e1244 commit ce7eae9

File tree

10 files changed

+136
-106
lines changed

10 files changed

+136
-106
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ Small patches and bug reports can be submitted a issue tracker in Github. Forkin
246246

247247
## Changelog
248248

249+
* Version 0.3.2
250+
* fix gulp-sass compiler
251+
* update package.json
252+
* fix Deprecation Warning: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
253+
* add timeout-minutes to workflows
249254
* Version 0.3.1
250255
* update example
251256
* fix items row/column alignment example

dart-sass/_flexbox-grid-mixins.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ===================================================================
22
// Flexbox Grid Mixins (Dart Sass)
3-
// Version 0.3.1
3+
// Version 0.3.2
44
// Description: Sass Mixins to generate Flexbox grid
55
// Author: thingsym
66
// GitHub: https://github.com/thingsym/flexbox-grid-mixins

docs/css-dart-sass/box-sizing-null.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
.grid--null {
2+
-webkit-box-sizing: border-box;
3+
box-sizing: border-box;
24
display: -webkit-box;
35
display: -ms-flexbox;
46
display: flex;
57
margin-left: -1%;
68
margin-right: -1%;
79
}
810
.grid--null > .grid__col-1 {
11+
-webkit-box-sizing: border-box;
12+
box-sizing: border-box;
913
-webkit-box-flex: 0;
1014
-ms-flex: 0 0 6.3333333333%;
1115
flex: 0 0 6.3333333333%;
@@ -14,6 +18,8 @@
1418
margin-bottom: 2%;
1519
}
1620
.grid--null > .grid__col-2 {
21+
-webkit-box-sizing: border-box;
22+
box-sizing: border-box;
1723
-webkit-box-flex: 0;
1824
-ms-flex: 0 0 14.6666666667%;
1925
flex: 0 0 14.6666666667%;
@@ -22,6 +28,8 @@
2228
margin-bottom: 2%;
2329
}
2430
.grid--null > .grid__col-3 {
31+
-webkit-box-sizing: border-box;
32+
box-sizing: border-box;
2533
-webkit-box-flex: 0;
2634
-ms-flex: 0 0 23%;
2735
flex: 0 0 23%;
@@ -30,6 +38,8 @@
3038
margin-bottom: 2%;
3139
}
3240
.grid--null > .grid__col-4 {
41+
-webkit-box-sizing: border-box;
42+
box-sizing: border-box;
3343
-webkit-box-flex: 0;
3444
-ms-flex: 0 0 31.3333333333%;
3545
flex: 0 0 31.3333333333%;
@@ -38,6 +48,8 @@
3848
margin-bottom: 2%;
3949
}
4050
.grid--null > .grid__col-5 {
51+
-webkit-box-sizing: border-box;
52+
box-sizing: border-box;
4153
-webkit-box-flex: 0;
4254
-ms-flex: 0 0 39.6666666667%;
4355
flex: 0 0 39.6666666667%;
@@ -46,6 +58,8 @@
4658
margin-bottom: 2%;
4759
}
4860
.grid--null > .grid__col-6 {
61+
-webkit-box-sizing: border-box;
62+
box-sizing: border-box;
4963
-webkit-box-flex: 0;
5064
-ms-flex: 0 0 48%;
5165
flex: 0 0 48%;
@@ -54,6 +68,8 @@
5468
margin-bottom: 2%;
5569
}
5670
.grid--null > .grid__col-7 {
71+
-webkit-box-sizing: border-box;
72+
box-sizing: border-box;
5773
-webkit-box-flex: 0;
5874
-ms-flex: 0 0 56.3333333333%;
5975
flex: 0 0 56.3333333333%;
@@ -62,6 +78,8 @@
6278
margin-bottom: 2%;
6379
}
6480
.grid--null > .grid__col-8 {
81+
-webkit-box-sizing: border-box;
82+
box-sizing: border-box;
6583
-webkit-box-flex: 0;
6684
-ms-flex: 0 0 64.6666666667%;
6785
flex: 0 0 64.6666666667%;
@@ -70,6 +88,8 @@
7088
margin-bottom: 2%;
7189
}
7290
.grid--null > .grid__col-9 {
91+
-webkit-box-sizing: border-box;
92+
box-sizing: border-box;
7393
-webkit-box-flex: 0;
7494
-ms-flex: 0 0 73%;
7595
flex: 0 0 73%;
@@ -78,6 +98,8 @@
7898
margin-bottom: 2%;
7999
}
80100
.grid--null > .grid__col-10 {
101+
-webkit-box-sizing: border-box;
102+
box-sizing: border-box;
81103
-webkit-box-flex: 0;
82104
-ms-flex: 0 0 81.3333333333%;
83105
flex: 0 0 81.3333333333%;
@@ -86,6 +108,8 @@
86108
margin-bottom: 2%;
87109
}
88110
.grid--null > .grid__col-11 {
111+
-webkit-box-sizing: border-box;
112+
box-sizing: border-box;
89113
-webkit-box-flex: 0;
90114
-ms-flex: 0 0 89.6666666667%;
91115
flex: 0 0 89.6666666667%;
@@ -94,6 +118,8 @@
94118
margin-bottom: 2%;
95119
}
96120
.grid--null > .grid__col-12 {
121+
-webkit-box-sizing: border-box;
122+
box-sizing: border-box;
97123
-webkit-box-flex: 0;
98124
-ms-flex: 0 0 98%;
99125
flex: 0 0 98%;

docs/css-dart-sass/default.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ td.example {
148148
}
149149

150150
.grid,
151-
.grid-global,
152151
.grid-3-columns,
153152
.grid-24-columns,
154153
[class*=grid--] {

0 commit comments

Comments
 (0)