Skip to content

Instantly share code, notes, and snippets.

@asimonok
Created November 16, 2015 10:12
Show Gist options
  • Save asimonok/bec46893efacae95b315 to your computer and use it in GitHub Desktop.
Save asimonok/bec46893efacae95b315 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="block">block</div>
// ----
// libsass (v3.2.5)
// ----
@mixin border-radius($rad){
-webkit-border-radius:$rad;
-moz-border-radius:$rad;
border-radius:$rad;
}
.block{
@include border-radius(10px);
background:#ccc;
padding:15px;
width:100px;
}
.block {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
background: #ccc;
padding: 15px;
width: 100px;
}
<div class="block">block</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment