Document writing in progress ..

This commit is contained in:
2025-11-25 22:09:00 +08:00
parent 444d3f866d
commit 874d1b7bd1
5691 changed files with 408435 additions and 0 deletions

15
docs/font-awesome/scss/_icons.scss vendored Normal file
View File

@@ -0,0 +1,15 @@
// specific icon class definition
// -------------------------
@use "sass:string";
@use 'variables' as v;
/* 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 v.$icons {
.#{v.$css-prefix}-#{$name} {
#{v.$icon-property}: string.unquote("\"#{ $icon }\"");
}
}