mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-06 21:24:06 -04:00
fixed small issue where main vertical splitter was causing overflow
This commit is contained in:
parent
7b1693e9d2
commit
13bcab9cd1
3 changed files with 17 additions and 6 deletions
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue