fixed small issue where main vertical splitter was causing overflow

This commit is contained in:
ParkerTenBroeck 2026-01-08 17:06:32 -05:00
parent 7b1693e9d2
commit 13bcab9cd1
3 changed files with 17 additions and 6 deletions

View file

@ -29,7 +29,17 @@ body {
.vscroll {
height: 100%;
overflow-x: scroll;
overflow-y: scroll;
}
.flexCol{
display: flex;
flex-direction: column;
}
.flexRow{
display: flex;
flex-direction: row;
}
.hSplit {
@ -37,6 +47,8 @@ body {
cursor: col-resize;
}
height: 8px;
min-height: 8px;
max-height: 8px;
background: var(--separator-bg);
transition:
background var(--dur-med) var(--ease-standard),
@ -48,6 +60,8 @@ body {
cursor: col-resize;
}
width: 8px;
min-width: 8px;
max-width: 8px;
background: var(--separator-bg);
transition:
background var(--dur-med) var(--ease-standard),