_icons.scss 319 B

12345678910
  1. // specific icon class definition
  2. // -------------------------
  3. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  4. readers do not read off random characters that represent icons */
  5. @each $name, $icon in $fa-icons {
  6. .#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); }
  7. }