Files
textual/examples/code_browser.tcss
2024-08-27 17:38:15 +01:00

31 lines
423 B
Plaintext

Screen {
background: $surface-darken-1;
&:inline {
height: 50vh;
}
}
#tree-view {
display: none;
scrollbar-gutter: stable;
overflow: auto;
width: auto;
height: 100%;
dock: left;
}
CodeBrowser.-show-tree #tree-view {
display: block;
max-width: 50%;
}
#code-view {
overflow: auto scroll;
min-width: 100%;
hatch: right $primary;
}
#code {
width: auto;
}