File tree Expand file tree Collapse file tree 8 files changed +18
-21
lines changed Expand file tree Collapse file tree 8 files changed +18
-21
lines changed Original file line number Diff line number Diff line change @@ -266,6 +266,15 @@ Small patches and bug reports can be submitted a issue tracker in Github. Forkin
266
266
267
267
## Changelog
268
268
269
+ * Version 0.3.4
270
+ * fix npm script
271
+ * fix Mixins Reference
272
+ * add Docker Development Environment
273
+ * gulpfile.js for docker
274
+ * update package.json
275
+ * update github actions, Node.js 12 actions are deprecated
276
+ * fix layout margin
277
+ * add Cards Layout example
269
278
* Version 0.3.3
270
279
* update README
271
280
* update index.html
Original file line number Diff line number Diff line change 1
1
// ===================================================================
2
2
// Flexbox Grid Mixins (Dart Sass)
3
- // Version 0.3.3
3
+ // Version 0.3.4
4
4
// Description: Sass Mixins to generate Flexbox grid
5
5
// Author: thingsym
6
6
// GitHub: https://github.com/thingsym/flexbox-grid-mixins
Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ footer {
79
79
.HolyGrail-container {
80
80
width : 100% ;
81
81
}
82
-
83
82
.HolyGrail-body {
84
83
-webkit-box-sizing : border-box;
85
84
box-sizing : border-box;
@@ -94,16 +93,14 @@ footer {
94
93
-ms-flex-pack : start;
95
94
justify-content : flex-start;
96
95
}
97
-
98
96
.HolyGrail-content ,
99
- .HolyGrail-aside {
97
+ .HolyGrail-aside {
100
98
-webkit-box-sizing : border-box;
101
99
box-sizing : border-box;
102
100
-webkit-box-flex : 0 ;
103
101
-ms-flex : 0 1 auto;
104
102
flex : 0 1 auto;
105
103
}
106
-
107
104
.HolyGrail-nav {
108
105
-webkit-box-sizing : border-box;
109
106
box-sizing : border-box;
@@ -119,7 +116,6 @@ footer {
119
116
.HolyGrail-container {
120
117
width : 100% ;
121
118
}
122
-
123
119
.HolyGrail-body {
124
120
-webkit-box-sizing : border-box;
125
121
box-sizing : border-box;
@@ -134,16 +130,14 @@ footer {
134
130
-ms-flex-pack : start;
135
131
justify-content : flex-start;
136
132
}
137
-
138
133
.HolyGrail-content ,
139
- .HolyGrail-aside {
134
+ .HolyGrail-aside {
140
135
-webkit-box-sizing : border-box;
141
136
box-sizing : border-box;
142
137
-webkit-box-flex : 0 ;
143
138
-ms-flex : 0 1 auto;
144
139
flex : 0 1 auto;
145
140
}
146
-
147
141
.HolyGrail-nav {
148
142
-webkit-box-sizing : border-box;
149
143
box-sizing : border-box;
Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ footer {
79
79
.HolyGrail-container {
80
80
width : 100% ;
81
81
}
82
-
83
82
.HolyGrail-body {
84
83
-webkit-box-sizing : border-box;
85
84
box-sizing : border-box;
@@ -94,16 +93,14 @@ footer {
94
93
-ms-flex-pack : start;
95
94
justify-content : flex-start;
96
95
}
97
-
98
96
.HolyGrail-content ,
99
- .HolyGrail-aside {
97
+ .HolyGrail-aside {
100
98
-webkit-box-sizing : border-box;
101
99
box-sizing : border-box;
102
100
-webkit-box-flex : 0 ;
103
101
-ms-flex : 0 1 auto;
104
102
flex : 0 1 auto;
105
103
}
106
-
107
104
.HolyGrail-nav {
108
105
-webkit-box-sizing : border-box;
109
106
box-sizing : border-box;
@@ -119,7 +116,6 @@ footer {
119
116
.HolyGrail-container {
120
117
width : 100% ;
121
118
}
122
-
123
119
.HolyGrail-body {
124
120
-webkit-box-sizing : border-box;
125
121
box-sizing : border-box;
@@ -134,16 +130,14 @@ footer {
134
130
-ms-flex-pack : start;
135
131
justify-content : flex-start;
136
132
}
137
-
138
133
.HolyGrail-content ,
139
- .HolyGrail-aside {
134
+ .HolyGrail-aside {
140
135
-webkit-box-sizing : border-box;
141
136
box-sizing : border-box;
142
137
-webkit-box-flex : 0 ;
143
138
-ms-flex : 0 1 auto;
144
139
flex : 0 1 auto;
145
140
}
146
-
147
141
.HolyGrail-nav {
148
142
-webkit-box-sizing : border-box;
149
143
box-sizing : border-box;
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< div class ="header header--hero ">
11
- < h1 class ="header-title "> Flexbox Grid Mixins < span class ="version "> v.0.3.3 </ span > </ h1 >
11
+ < h1 class ="header-title "> Flexbox Grid Mixins < span class ="version "> v.0.3.4 </ span > </ h1 >
12
12
< p class ="header-description "> Sass Mixins to generate Flexbox grid</ p >
13
13
14
14
< ul class ="header-nav ">
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " flexbox-grid-mixins" ,
3
- "version" : " 0.3.3 " ,
3
+ "version" : " 0.3.4 " ,
4
4
"description" : " Sass Mixins to generate Flexbox grid" ,
5
5
"main" : " sass/_flexbox-grid-mixins.scss" ,
6
6
"author" : " Thingsym" ,
Original file line number Diff line number Diff line change 1
1
// ===================================================================
2
2
// Flexbox Grid Mixins (LibSass)
3
- // Version 0.3.3
3
+ // Version 0.3.4
4
4
// Description: Sass Mixins to generate Flexbox grid
5
5
// Author: thingsym
6
6
// GitHub: https://github.com/thingsym/flexbox-grid-mixins
You can’t perform that action at this time.
0 commit comments