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;
|
2024-01-13 03:30:55 +00:00
|
|
|
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;
|
|
|
|
}
|
2024-01-13 03:30:55 +00:00
|
|
|
|
|
|
|
.Editor-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|