feat(funbox): add backwards funbox

closes #4661
This commit is contained in:
Miodec 2023-09-26 14:36:51 +01:00
parent 12e83c53f4
commit 89e8fef2b3
4 changed files with 25 additions and 0 deletions

View file

@ -320,6 +320,13 @@ const FunboxList: MonkeyTypes.FunboxMetadata[] = [
properties: ["noLigatures"],
name: "crt",
},
{
name: "backwards",
properties: ["noLigatures", "conflictsWithSymmetricChars"],
frontendFunctions: ["applyCSS"],
canGetPb: true,
difficultyLevel: 3,
},
];
export default FunboxList;

View file

@ -246,6 +246,12 @@ const list: MonkeyTypes.FunboxMetadata[] = [
info: "Go back to the 1980s",
properties: ["noLigatures"],
},
{
name: "backwards",
info: "...sdrawkcab epyt ot yrt woN",
properties: ["noLigatures", "conflictsWithSymmetricChars"],
hasCSS: true,
},
];
export function getAll(): MonkeyTypes.FunboxMetadata[] {

View file

@ -175,5 +175,10 @@
"name": "crt",
"info": "Go back to the 1980s",
"canGetPb": true
},
{
"name": "backwards",
"info": "...sdrawkcab epyt ot yrt woN",
"canGetPb": true
}
]

View file

@ -0,0 +1,7 @@
#words {
direction: rtl;
}
#words.rightToLeftTest {
direction: rtl;
}