Current logic dictates $grid_padding_lr: $grid_padding_l + $grid_padding_r; this is basically taking the separate values of $grid_padding_l and $grid_padding_r; and combining into a single value.
Further down we are stating @if $grid_padding_lr > 0 then do something.
This is failing because then you get something like the following in the CSS
padding-left: 0.52083%;
padding-right: 0%;
Need to update logic so that each CSS rule is evaluated for a value and then applied.
Current logic dictates
$grid_padding_lr: $grid_padding_l + $grid_padding_r;
this is basically taking the separate values of$grid_padding_l
and$grid_padding_r;
and combining into a single value.Further down we are stating
@if $grid_padding_lr > 0
then do something.This is failing because then you get something like the following in the CSS
Need to update logic so that each CSS rule is evaluated for a value and then applied.