Skip to content

Commit 2fa10a0

Browse files
committed
Updated lib - fixed bug
1 parent 1abd8ec commit 2fa10a0

5 files changed

Lines changed: 11 additions & 16 deletions

File tree

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ module.exports = function (grunt) {
1919
require('load-grunt-tasks')(grunt)
2020

2121
// Default task.
22-
grunt.registerTask('default', ['jshint', 'concat', 'uglify','cssnext','cmq', 'cssmin', 'imagemin']);
22+
grunt.registerTask('default', ['jshint', 'concat', 'uglify','cssnext', 'cssmin', 'imagemin']);
2323
};

grunt-tasks/cssnext.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,8 @@ module.exports = function(grunt) {
22
grunt.config('cssnext', {
33
options: {
44
sourcemap: true,
5-
features:{
6-
autoprefixer: {
7-
browsers: ['ff >= 4', 'ie >= 8', 'safari >= 5.1', 'opera >= 12', 'chrome >=10']
8-
},
9-
import: {
10-
path: ["node_modules"]
11-
}
12-
}
5+
browsers: ['ff >= 4', 'ie >= 8', 'safari >= 5.1', 'opera >= 12', 'chrome >=10'],
6+
import: { path: ["node_modules"] }
137
},
148
dist: {
159
files: {

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@
1919
"grunt-contrib-concat": "~0.3.0",
2020
"grunt-contrib-uglify": "~0.2.7",
2121
"grunt-contrib-cssmin": "~0.9.0",
22-
"grunt-combine-media-queries": "~1.0.19",
2322
"load-grunt-tasks": "~0.6.0",
2423
"intern": "2.2.0",
2524
"grunt-contrib-imagemin": "~0.7.1",
26-
"grunt-cssnext" : "^0.3.0",
25+
"grunt-cssnext" : "^1.0.0",
2726
"suitcss-utils-display" : "^0.4.0",
2827
"suitcss-utils-align" : "^0.2.0",
29-
"cssrecipes-reset" : "^0.4.0",
30-
"cssrecipes-utils" : "^0.4.0",
28+
"cssrecipes-reset" : "^0.5.0",
29+
"cssrecipes-utils" : "^0.5.0",
3130
"cssrecipes-grid" : "^0.4.0",
3231
"cssrecipes-custom-media-queries" : "0.3.0"
3332
}

webcompat/static/css/development/base/variable.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
--base-min-width: 320px;
99
--base-max-width: 1920px;
1010
--base-width-content : 1180px;
11-
--base-font-size:1.6rem;
11+
--base-font-size: 1.6rem;
1212
}
1313
/* theme */
1414
:root {

webcompat/static/css/development/layout/body.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ html {
3131
color: var(--wc-variant-background-dark);
3232
box-sizing:border-box;
3333
font-size:62.5%;
34-
font-size:calcl(1em * 0.625);
34+
font-size:calc(1em * 0.625);
3535
-ms-text-size-adjust: 100%;
3636
-webkit-text-size-adjust: 100%;
3737
}
38-
*, *:before, *:after {
38+
*,
39+
*:before,
40+
*:after {
3941
box-sizing: inherit;
4042
}
4143

0 commit comments

Comments
 (0)