feat(web): solver output enhancing

- math render header
- tooltips
- copy word to input
- cancel solver
This commit is contained in:
2026-08-21 20:35:22 +02:00
parent 539534ad90
commit 2d147fd97a
6 changed files with 97 additions and 13 deletions
+7
View File
@@ -69,6 +69,13 @@
class:bg-green-600={colors[i] === Color.GREEN}
class:bg-yellow-600={colors[i] === Color.YELLOW}
class:bg-grey-600={colors[i] === Color.GREY}
onclick={() => {
if (cursor === i) {
colors[cursor] = (colors[cursor] + 1) % 3;
} else {
cursor = i;
}
}}
>
{letter}
</div>