Skip to content

Instantly share code, notes, and snippets.

@zumwalt
Created October 24, 2013 19:19
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 zumwalt/7143357 to your computer and use it in GitHub Desktop.
Save zumwalt/7143357 to your computer and use it in GitHub Desktop.
@mixin icon-setup($icon, $width, $height, $padding:"") {
padding-left: $width + 9;
position: relative;
&:before {
@include icon-sprite($icon);
content: '';
display: inline-block;
height: $height;
left: 5px;
position: absolute;
@if $padding == '' {
top: 0;
} @else {
top: $padding;
}
width: $width;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment