feat(funbox): add ASL (@fehmer) (#6485)

This commit is contained in:
Christian Fehmer 2025-04-23 18:45:52 +02:00 committed by GitHub
parent d3f3a834e3
commit ac1d6f0847
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,8 @@
@font-face {
font-family: "Gallaudet";
src: url("/webfonts/GallaudetRegular.woff2") format("woff2");
}
#wordsWrapper {
font-family: "Gallaudet" !important;
}

Binary file not shown.

View file

@ -452,6 +452,14 @@ const list: Record<FunboxName, FunboxMetadata> = {
frontendFunctions: ["withWords"],
name: "polyglot",
},
asl: {
description: "Practice american sign language.",
canGetPb: true,
difficultyLevel: 1,
properties: ["hasCssFile", "noLigatures"],
name: "asl",
cssModifications: ["words"],
},
};
// oxlint doesnt understand ts overloading

View file

@ -42,7 +42,8 @@ export type FunboxName =
| "instant_messaging"
| "underscore_spaces"
| "ALL_CAPS"
| "polyglot";
| "polyglot"
| "asl";
export type FunboxForcedConfig = Record<string, string[] | boolean[]>;