Skip to content

Instantly share code, notes, and snippets.

@mikeyp
Created October 24, 2013 22:34
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 mikeyp/7146318 to your computer and use it in GitHub Desktop.
Save mikeyp/7146318 to your computer and use it in GitHub Desktop.
<a href="#" class="read-more">Read more</a>
@mixin link-icon($icon) {
padding-right: 10px;
&:after {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
display: inline-block;
text-decoration: none;
padding-left: 5px;
content: $icon;
}
}
a.read-more {
@include link-icon($circle-arrow-right);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment