mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-13 20:53:09 +00:00
add border to proof tree
This commit is contained in:
parent
7db36724ea
commit
585b402cd7
@ -7,3 +7,12 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tc-proof-tree {
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #37485f;
|
||||||
|
}
|
||||||
|
|
||||||
|
tc-unification {
|
||||||
|
background-color: #e9f2fd;
|
||||||
|
}
|
@ -23,7 +23,7 @@ public class ExampleDialog extends Dialog implements LocaleChangeObserver {
|
|||||||
|
|
||||||
private static final List<String> EXAMPLES =
|
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)",
|
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;
|
private final Paragraph instruction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user