Closed
Description
I'm using node-sass and configured precision to 10. Example of compiled sass:
.col-xs-1 {
width: 8.3333333333%;
}
However when comparing this to the standard bootstrap.css it has less precision (8):
.col-xs-1 {
width: 8.33333333%;
}
Should I just use 8 as the precision with node-sass?