SASS SCSS - Problems with rounding.

2

I'm having the following problem: developing a Grid system with SCSS, I got the problem of rounding off the percentages that define the size of each column. I would like to know if anyone has the solution for rounding variables, as it breaks the entire schema.

Thanks,

    
asked by anonymous 17.03.2016 / 20:46

1 answer

0

Alternative found, in the command line there is the possibility of using the "--precision" attribute which used 100 houses after the comma: At the terminal:

scss --watch --precision 100 grid.scss:grid.css
    
18.03.2016 / 13:00