Skip to content

Instantly share code, notes, and snippets.

@kmck
Created January 20, 2016 20:35
Show Gist options
  • Save kmck/4e75d975dcae3d9ec1cb to your computer and use it in GitHub Desktop.
Save kmck/4e75d975dcae3d9ec1cb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
@function icon-char($filename) {
$char: "";
@if $filename == reblog {
$char: "\EA06";
}
@return $char;
}
@mixin icon($filename, $insert: before) {
&:#{$insert} {
content: icon-char($filename);
}
}
.icon_reblog:before {
content: "\EA06" }
.reblog-icon {
@include icon('reblog');
}
@charset "UTF-8";
.icon_reblog:before {
content: "\EA06";
}
.reblog-icon:before {
content: "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment