add border to proof tree

This commit is contained in:
ucrhh 2021-02-09 22:09:34 +01:00
parent 7db36724ea
commit 585b402cd7
2 changed files with 10 additions and 1 deletions

View File

@ -6,4 +6,13 @@
display: flex;
flex-direction: column;
height: 100%;
}
tc-proof-tree {
border-style: solid;
border-color: #37485f;
}
tc-unification {
background-color: #e9f2fd;
}

View File

@ -23,7 +23,7 @@ public class ExampleDialog extends Dialog implements LocaleChangeObserver {
private static final List<String> EXAMPLES =
List.of("λx.x", "λx.λy.y x", "λx.λy.y (x x)", "let f = λx. g y y in f 3", "(λx.x x) (λx.x x)",
"(λx.λy.y (x y)) (λz. λa. z g a)");
"(λx.λy.y (x y)) (λz. λa. z g a)", "let f = λx. let g = λy. y in g x in f 3");
private final Paragraph instruction;
/**