Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 21:27
Show Gist options
  • Save jasonkmccoy/bda23af2a23f59ec4244 to your computer and use it in GitHub Desktop.
Save jasonkmccoy/bda23af2a23f59ec4244 to your computer and use it in GitHub Desktop.
flex mixin
@mixin flex($values) {
-webkit-box-flex: $values;
-moz-box-flex: $values;
-ms-flex: $values;
-webkit-flex: $values;
flex: $values;
}
// Usage
div {
@include flex(2);
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment