Playground highlights and shows info/errors from build

This commit is contained in:
2024-11-05 13:44:16 -08:00
parent f92d287909
commit 182876d16b
15 changed files with 305 additions and 145 deletions

21
playground/style.css Normal file
View File

@@ -0,0 +1,21 @@
#app {
top: 0;
bottom: 0;
left: 0;
right: 0;
position: absolute;
}
.wrapper {
display: flex;
flex-direction: row;
height: 100%;
}
.wrapper > div {
flex: 1 1;
}
#result {
overflow: auto;
font-family: 'Comic Code', monospace;
font-size: 12px;
white-space: pre;
}