mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-15 20:04:29 +08:00
parent
12e83c53f4
commit
89e8fef2b3
4 changed files with 25 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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[] {
|
||||
|
|
|
|||
|
|
@ -175,5 +175,10 @@
|
|||
"name": "crt",
|
||||
"info": "Go back to the 1980s",
|
||||
"canGetPb": true
|
||||
},
|
||||
{
|
||||
"name": "backwards",
|
||||
"info": "...sdrawkcab epyt ot yrt woN",
|
||||
"canGetPb": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
7
frontend/static/funbox/backwards.css
Normal file
7
frontend/static/funbox/backwards.css
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#words {
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
#words.rightToLeftTest {
|
||||
direction: rtl;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue