Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
fix(build): -webkit- prefix for layouts
Browse files Browse the repository at this point in the history
Fixes the layout CSS not getting the `-webkit-` prefixes.

Fixes #8999.

Closes #9136
  • Loading branch information
crisbeto authored and ThomasBurleson committed Jul 26, 2016
1 parent 73a4082 commit 9c4165b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/util.js
Expand Up @@ -71,7 +71,7 @@ function buildJs () {

function autoprefix () {
return autoprefixer({browsers: [
'last 2 versions', 'last 4 Android versions'
'last 2 versions', 'last 4 Android versions', 'Safari >= 8'
]});
}

Expand Down

0 comments on commit 9c4165b

Please sign in to comment.