Skip to content

Instantly share code, notes, and snippets.

@alfredbez
Created December 12, 2014 09:58
Show Gist options
  • Save alfredbez/fa96e696bbcd72b0bf8f to your computer and use it in GitHub Desktop.
Save alfredbez/fa96e696bbcd72b0bf8f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.box {
@include border-radius(10px);
}
.andereBox {
@include border-radius(5px);
}
.box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}
.andereBox {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment