11 lines
319 B
SCSS
Raw Normal View History

2022-02-07 14:16:51 -06:00
// 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 $name, $icon in $fa-icons {
2022-03-15 14:08:55 -05:00
.#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); }
2022-02-07 14:16:51 -06:00
}
2023-02-07 13:23:03 -06:00