Font-Awesome/scss/_icons.scss

9 lines
289 B
SCSS
Raw Normal View History

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
2013-10-17 01:46:28 +08:00
readers do not read off random characters that represent icons */
2015-06-29 09:26:27 +08:00
@each $fa-glyph-name, $fa-glyph-content in $fa-var-glyphs {
.#{$fa-css-prefix}-#{$fa-glyph-name}:before {
content: $fa-glyph-content;
}
}