Skip to content

Instantly share code, notes, and snippets.

@sdougbrown
Created October 31, 2016 18:28
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 sdougbrown/1a3c6b4326ae2dd9f8d6af827958bab2 to your computer and use it in GitHub Desktop.
Save sdougbrown/1a3c6b4326ae2dd9f8d6af827958bab2 to your computer and use it in GitHub Desktop.
emoji.scss
@font-face {
unicode-range : U+1F431-U+1F63A;
}
.c-emoji:before {
font-style: normal;
}
$emojiList:
"arrow-up" "⬆️",
"arrow-down" "⬇️",
"cancel" "🚫",
"delete" "❌",
"disk" "💾",
"memo" "📝",
"minus" "➖",
"pencil" "✏️",
"plus" "➕",
"sparkle" "✨",
"triangle-up" "🔺",
"triangle-down" "🔻",
;
@each $emoji in $emojiList {
$emojiClass: nth($emoji, 1);
$emojiContent: nth($emoji, 2);
.c-emoji-#{$emojiClass}:before {
content: $emojiContent;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment