Skip to content

Commit 3d22dad

Browse files
committed
Bug fix. If precision is not set it is 5 by default which causes alignment issues.
twbs/bootstrap-sass#409
1 parent 58a1beb commit 3d22dad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: 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)