@@ -45,7 +45,7 @@ $class_push: 'push'; // //
4545 @if ($total_width == 100% ){
4646 $not_rounded_value : (math .div (100% + $gutter_width , $total_columns )* $column_index )- $gutter_width ;
4747 $not_rounded_value : $not_rounded_value * 100 ;
48- $rounded_value : round ($not_rounded_value )* 0.01 ;
48+ $rounded_value : math . round ($not_rounded_value )* 0.01 ;
4949 @return $rounded_value ;
5050 }@else {
5151 @return (math .div ($total_width + $gutter_width , $total_columns )* $column_index )- $gutter_width ;
@@ -56,7 +56,7 @@ $class_push: 'push'; // //
5656 @if ($total_width == 100% ){
5757 $not_rounded_value : (math .div (100 + $gutter_width , $total_columns ))- $gutter_width ;
5858 $not_rounded_value : $not_rounded_value * 100 ;
59- $rounded_value : round ($not_rounded_value )* 0.01 ;
59+ $rounded_value : math . round ($not_rounded_value )* 0.01 ;
6060 @return $rounded_value * 1% ;
6161 }@else {
6262 @return math .div ($total_width - ($gutter_width * ($total_columns - 1 )), $total_columns );
@@ -183,7 +183,7 @@ $class_push: 'push'; // //
183183
184184@mixin generate_grid_positions ($_column_selector , $_element_width ){
185185
186- $_cols_per_row : floor (math .div ($total_columns , $_element_width ));
186+ $_cols_per_row : math . floor (math .div ($total_columns , $_element_width ));
187187
188188 // create rule for each element
189189 @for $i from 1 through $_cols_per_row {
@@ -204,7 +204,7 @@ $class_push: 'push'; // //
204204
205205@mixin generate_grid_positions_legacy ($_column_selector , $_element_width , $_elements_in_grid :$total_columns ){
206206
207- $_cols_per_row : floor (math .div ($total_columns , $_element_width ));
207+ $_cols_per_row : math . floor (math .div ($total_columns , $_element_width ));
208208 $_current_col :1 ;
209209
210210 // create rule for each element
0 commit comments