Skip to content

Commit

Permalink
Update post css task to add rem fallbacks properly for IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
ediblecode committed Dec 7, 2016
1 parent 6b1579d commit bac10e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .grunt-tasks/postcss.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
options: {
map: true,
processors: [
require("pixrem")(), // add fallbacks for rem units for IE8+
require("pixrem")({ html: false, atrules: true }), // add fallbacks for rem units for IE8+
require("autoprefixer")({ browsers: "> 1%, last 2 versions, ie >= 8" }), // add vendor prefixes
]
},
Expand Down

0 comments on commit bac10e8

Please sign in to comment.