Skip to content

Commit

Permalink
chore(exploring): equation solver update
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerengels committed Jun 30, 2024
1 parent fcc0722 commit f3a836f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"kmap-html-editor": "^0.9.12",
"kmap-jsxgraph": "^0.9.16",
"kmap-solve-tree": "^0.9.17",
"kmap-solvee": "^0.9.1",
"kmap-solvee": "^0.9.2",
"kmap-term-tree": "^0.9.21",
"kmap-binomial-coefficient": "^0.9.5",
"lit": "^2.8.0",
Expand Down
4 changes: 3 additions & 1 deletion client/src/components/kmap-test-card-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export class KMapTestCardContent extends LitElement {
...element.getElementsByTagName("dnd-fillin"),
...element.getElementsByTagName("kmap-solve-tree"),
...element.getElementsByTagName("kmap-jsxgraph"),
...element.getElementsByTagName("kmap-solvee"),
].forEach(element => fun(element as unknown as TestInteraction));
}

Expand Down Expand Up @@ -233,8 +234,9 @@ export class KMapTestCardContent extends LitElement {
border-radius: 2px;
padding: 2px 4px;
}
kmap-solve-tree, kmap-jsxgraph {
kmap-solve-tree, kmap-jsxgraph, kmap-solvee {
outline: 3px solid transparent;
border-radius: 8px;
}
*[correctness=correct]:not([empty]) {
outline-color: rgba(var(--color-green-num), .7) !important;
Expand Down

0 comments on commit f3a836f

Please sign in to comment.