sass/susy/language/susy/_isolate.scss in susy-2.0.0.alpha.5 vs sass/susy/language/susy/_isolate.scss in susy-2.0.0.alpha.6
- old
+ new
@@ -9,11 +9,11 @@
$input: first
) {
$input : parse-span($input);
$output : (
push: get-isolation($input),
- flow: span-get(flow, $input),
+ flow: susy-get(flow, $input),
);
@include isolate-output($output...);
}
@@ -22,13 +22,13 @@
// Return the isolation offset width
// - $input: <map>
@function get-isolation(
$input
) {
- $span : span-get(span, $input);
- $location : span-get(location, $input);
- $columns : span-get(columns, $input);
+ $span : susy-get(span, $input);
+ $location : susy-get(location, $input);
+ $columns : susy-get(columns, $input);
$width : null;
@if type-of($location) == number and not unitless($location) {
$width: $location;
} @else {
@@ -41,10 +41,10 @@
));
$width: get-span-width($push);
}
}
- @if span-get(gutter-position, $input) == split {
+ @if susy-get(gutter-position, $input) == split {
$width: if($width == null, gutters($input), $width + gutters($input));
}
@return $width;
}