Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Created October 29, 2018 12:32
Show Gist options
  • Save mrzarkovic/4bcfe2b35ef287a9ac0882efcf29c7f5 to your computer and use it in GitHub Desktop.
Save mrzarkovic/4bcfe2b35ef287a9ac0882efcf29c7f5 to your computer and use it in GitHub Desktop.
SASS mixin
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.box {
@include border-radius(10px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment