Skip to content

Commit 607982c

Browse files
committed
Merge pull request Swiip#1063 from vukoje/master
Bug fix. If precision is not set it is 5 by default which causes alig…
2 parents 58a1beb + 3d22dad commit 607982c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

generators/app/templates/gulp/_styles.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ var buildStyles = function() {
3131
};
3232
<% } if (props.cssPreprocessor.extension === 'scss') { -%>
3333
var sassOptions = {
34-
style: 'expanded'
34+
style: 'expanded',
35+
precision: 10
3536
};
3637
<% } -%>
3738

0 commit comments

Comments
 (0)