Migrate to TS with ESLint and Prettier

This commit is contained in:
2025-01-28 22:54:38 +01:00
parent 40954e1f52
commit c17f0f484a
18 changed files with 1274 additions and 586 deletions
+36
View File
@@ -0,0 +1,36 @@
.container {
margin: auto;
padding: 1rem;
letter-spacing: 0.12rem;
}
.pending {
color: gray;
}
.highlight {
color: gray;
animation: blink 0.75s infinite ease-in-out;
}
.correct {
color: green;
}
.incorrect {
color: red;
}
@keyframes blink {
0% {
border-left: 1px solid white;
}
50% {
border-left: 1px solid transparent;
}
100% {
border-left: 1px solid white;
}
}