icons.less 314 B

12345678910
  1. ---
  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. {% for icon in icons %}
  6. {% for alias in icon.aliases %}
  7. .icon-{{ alias }}:before,
  8. {% endfor %}
  9. .icon-{{ icon.id }}:before { content: @{{ icon.id }}; }
  10. {% endfor %}