mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-10 03:10:44 +00:00
add border to proof tree
This commit is contained in:
parent
7db36724ea
commit
585b402cd7
@ -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;
|
||||
}
|
@ -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;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user