Skip to content

Commit

Permalink
Simpler aliasing
Browse files Browse the repository at this point in the history
Fixes #15
Fixes #16
  • Loading branch information
mastastealth committed Oct 27, 2014
1 parent 6157bef commit 43d947a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flex.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
flex-direction: $value;
}
// Shorter version:
@mixin flex-dir($value: false) { @include flex-direction($value); }
@mixin flex-dir($args...) { @include flex-direction($args...); }

//----------------------------------------------------------------------

Expand Down Expand Up @@ -310,7 +310,7 @@
justify-content: $value;
}
// Shorter version:
@mixin flex-just($value: flex-start) { @include justify-content($value); }
@mixin flex-just($args...) { @include justify-content($args...); }

//----------------------------------------------------------------------

Expand Down

0 comments on commit 43d947a

Please sign in to comment.