/// responsive gutters for the grid.
/// @access private
///
-/// @param {String} $breakpoing - a named or non-named breakpoing.
+/// @param {String} $breakpoint - a named or non-named breakpoint.
///
/// @returns {Array} The list of breakpoints up to and. If $key is auto, returns breakpoints above the zero
@function -zf-closest-named-breakpoint($breakpoint) {
@return null;
}
- // Calcul the opposite place in a circle, with a starting index of 1
+ // Calculate the opposite place in a circle, with a starting index of 1
$length: length($dirs);
$demi: $length / 2;
$opposite-place: (($place + $demi - 1) % $length) + 1;
$base: strip-unit($base) * 16px;
}
- // Now lets convert our value to pixels too
+ // Now let's convert our value to pixels too
@if unit($value) == '%' {
$value: ($value / 100%) * $base;
}
@return strip-unit($value) / strip-unit($base);
}
- // assume that line-heights greatern then 10 are meant to be absolute in 'px'
+ // assume that line-heights greater than 10 are meant to be absolute in 'px'
@if unitless($value) and ($value > 10) {
@return $value / strip-unit($base);
}