mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
11 lines
314 B
Plaintext
11 lines
314 B
Plaintext
---
|
|
---
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
readers do not read off random characters that represent icons */
|
|
{% for icon in icons %}
|
|
{% for alias in icon.aliases %}
|
|
.icon-{{ alias }}:before,
|
|
{% endfor %}
|
|
.icon-{{ icon.id }}:before { content: @{{ icon.id }}; }
|
|
{% endfor %}
|