Skip to content

Commit

Permalink
Remove unused $gut param from move()
Browse files Browse the repository at this point in the history
  • Loading branch information
corysimmons committed Mar 17, 2015
1 parent 3df00e3 commit b67aa0d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lost.scss
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ $rtl: false !default;
/// Source ordering. Useful for having an element appear above or below another element on mobile devices, and then to the opposite side on larger devices. For instance, a sidebar and article. You might want the sidebar to appear before the article on mobile, but be to the right of the article on desktop. This is how that is achieved.
///
/// @param {number} $ratios - Fraction of the container to be moved by it's left value.
/// @param {number} $gut - Gutter to be involved in the math needed to generate the correct left positioning. This need not be changed unless you are specifying sibling columns have a different gutter than default, in which case, it would need to match.
///
/// @example
/// .sidebar {
Expand All @@ -305,7 +304,7 @@ $rtl: false !default;
/// }
/// }

@mixin move($ratios: false, $gut: $gutter) {
@mixin move($ratios: false) {
position: relative;

@if ($old) {
Expand Down

0 comments on commit b67aa0d

Please sign in to comment.