simplify CSS rules for brush editor overflow

This commit is contained in:
りき萌 2024-09-03 22:42:00 +02:00
parent 5b22a50036
commit bfbde0dee3
2 changed files with 18 additions and 24 deletions

View file

@ -41,27 +41,23 @@ main {
&>.right {
grid-column: right / right;
height: 100%;
height: fit-content;
min-height: 0;
max-height: 100%;
&>.right-content {
max-height: 100%;
display: flex;
flex-direction: row;
justify-content: stretch;
display: flex;
flex-direction: row;
justify-content: stretch;
&>rkgk-resize-handle {
flex-shrink: 0;
height: auto;
}
&>rkgk-resize-handle {
flex-shrink: 0;
height: auto;
}
&>rkgk-brush-editor {
height: auto;
overflow: auto;
flex-grow: 1;
}
&>rkgk-brush-editor {
height: auto;
overflow: auto;
flex-grow: 1;
}
}
}