mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
32 lines
430 B
Plaintext
32 lines
430 B
Plaintext
Screen {
|
|
&: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 $panel;
|
|
}
|
|
#code {
|
|
width: auto;
|
|
padding: 0 1;
|
|
background: $surface;
|
|
}
|