Skip to content

Instantly share code, notes, and snippets.

@leidottw
Created February 16, 2014 07:53
Show Gist options
  • Select an option

  • Save leidottw/9030874 to your computer and use it in GitHub Desktop.

Select an option

Save leidottw/9030874 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.4)
// Compass (v1.0.0.alpha.18)
// ----
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
-o-border-radius: $radius;
border-radius: $radius;
}
div {
border: 1px solid #000;
height: 100px;
@include border-radius(2rem);
}
div {
border: 1px solid #000;
height: 100px;
-webkit-border-radius: 2rem;
-moz-border-radius: 2rem;
-ms-border-radius: 2rem;
-o-border-radius: 2rem;
border-radius: 2rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment