Skip to content

Instantly share code, notes, and snippets.

@LukyVj
Last active August 29, 2015 14:05
Show Gist options
  • Save LukyVj/3531bb60ded4153e799d to your computer and use it in GitHub Desktop.
Save LukyVj/3531bb60ded4153e799d to your computer and use it in GitHub Desktop.
SASS Iconic SVG system
$icons: "facebook", "twitter", "instagram";
$size: 1.2em;
@each $icon in $icons {
.ico{
display: block;
&:before{
content: '';
display: block;
width: $size;
height: $size;
}
&[class*="ico-#{($icon)}"]{
&:before{
background:url("path/to/your/icon_#{($icon)}.svg");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment