Skip to content

Instantly share code, notes, and snippets.

View voodoocode's full-sized avatar

ɥɔɐ⅂ ɐɥɔsɐS voodoocode

View GitHub Profile
@voodoocode
voodoocode / _mixins.scss
Created June 30, 2014 13:18
A short mixin to insert a given character in generated content element before an element.
//include a character with before
@mixin insert-before($char: '-') {
&:before {
content: $char;
@content;
}
}
@mixin checkmark() {
@include insert-before('√') {