sass/susy/language/susy/_rows.scss in susy-2.1.0 vs sass/susy/language/susy/_rows.scss in susy-2.1.1
- old
+ new
@@ -79,11 +79,11 @@
) {
$span : parse-span($span);
$edge : susy-get(edge, $span);
@if not $edge {
- $count: column-count(susy-get(columns, $span));
+ $count: susy-count(susy-get(columns, $span));
$location: susy-get(location, $span);
$n: susy-get(span, $span);
$number: if(type-of($location) == number, true, false);
$index: if($number and unitless($location), true, false);
@@ -120,10 +120,10 @@
@if $edge and not $location and type-of($n) == number and unitless($n) {
@if $edge == first {
$location: 1;
} @else if $edge == last {
- $location: column-count(susy-get(columns, $span)) - $n + 1;
+ $location: susy-count(susy-get(columns, $span)) - $n + 1;
}
}
@return $location
}