organic_ast_explorer/src/Editor.css

32 lines
373 B
CSS
Raw Normal View History

2024-01-13 03:07:59 +00:00
.Editor {
display: flex;
flex-direction: row;
height: 100%;
width: 100%;
}
2024-01-13 03:16:31 +00:00
.Editor-textwrapper {
2024-01-13 03:07:59 +00:00
flex: 1;
flex-basis: 0;
position: relative;
2024-01-13 03:07:59 +00:00
}
2024-01-13 03:16:31 +00:00
.Editor-textarea {
width: 100%;
height: 100%;
}
2024-01-13 03:07:59 +00:00
.Editor-ast {
flex: 1;
background: green;
}
.Editor-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
pointer-events: none;
}