Skip to content

Instantly share code, notes, and snippets.

@greenhornet79
Created August 7, 2014 14:21
Show Gist options
  • Save greenhornet79/b7e736f1152dd7dcb554 to your computer and use it in GitHub Desktop.
Save greenhornet79/b7e736f1152dd7dcb554 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.module {
@include border-radius(5px);
}
.button {
@include border-radius(10px);
}
.module {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
}
.button {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment