I have the following sass code for a grid column:
https://codepen.io/anon/pen/zpwpOm?editors=1100
Since the grid width is 1140px (max size triggered) and $gutter-horizonta is 60px, each column width should be 540px so I would have 540px + 60px + 540px = 1140px.
However when I run it in my node-sass and sass-loader ,for some reason the column width that appears when I inspect the element in any browser is 47% which is no sense since 47% is 535.8px not 540px.
Why is the following code being converted to no sense percentages?
width: calc((100% - #{$gutter-horizontal}) / 2)
It should be converted to 540px not 47%
Of course I end with a unexpected spacement aftet the second column: