Move flexbox handling up to the explorer component.

This commit is contained in:
Tom Alexander 2024-01-28 18:21:38 -05:00
parent 083b0aa376
commit 1cc5dd7911
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,4 @@
.EditorTextWrapper {
/* TODO: This flex should be in the parent */
flex: 1;
flex-basis: 0;
position: relative;
background: white;
font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas,

View File

@ -3,4 +3,9 @@
flex-direction: row;
height: 100%;
width: 100%;
> * {
flex: 1;
flex-basis: 0;
}
}

View File

@ -1,5 +1,4 @@
.OrgAst {
flex: 1;
background: #eeeeee;
padding: 5px;
overflow: auto;