mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-04-06 00:29:13 +08:00
8 lines
341 B
Plaintext
8 lines
341 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 %}
|
|
.@{fa-css-prefix}-{{ alias }},{% endfor %}
|
|
.@{fa-css-prefix}-{{ icon.id }} { &:before { content: @fa-var-{{ icon.id }}; } }{% endfor %}
|