Skip to content

Instantly share code, notes, and snippets.

@hudochenkov
Created June 15, 2015 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hudochenkov/7a18611862b8dbe5a761 to your computer and use it in GitHub Desktop.
Save hudochenkov/7a18611862b8dbe5a761 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin icon($width, $height: $width, $center: false) {
width: $width;
height: $height;
@if $center {
margin-top: - floor($height / 2);
margin-left: - floor($width / 2);
}
}
.block {
@include icon(10px, 20px, true);
}
.block {
width: 10px;
height: 20px;
margin-top: -10px;
margin-left: -5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment