mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-12-06 00:24:24 +00:00
a03a91d681
Co-authored-by: robmadole <robmadole@users.noreply.github.com>
13 lines
357 B
Plaintext
13 lines
357 B
Plaintext
// specific icon class definition
|
|
// -------------------------
|
|
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
readers do not read off random characters that represent icons */
|
|
|
|
each(.fa-icons(), {
|
|
.@{fa-css-prefix}-@{key} {
|
|
@{fa-icon-property}: @value;
|
|
@{fa-duotone-icon-property}: %("%s%s", @value, @value);
|
|
}
|
|
});
|