Merge pull request #614 from mathuo/613-gap-between-panels-leads-to-some-panels-size-overflow

bug: --group-gap-size overflow fix
This commit is contained in:
mathuo 2024-05-28 21:42:20 +01:00 committed by GitHub
commit 5762faac9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,11 +19,15 @@
&.horizontal { &.horizontal {
> .view-container > .view { > .view-container > .view {
&:not(:last-child) { &:not(:last-child) {
border-right: var(--dv-group-gap-size) solid transparent; .groupview {
border-right: var(--dv-group-gap-size) solid transparent;
}
} }
&:not(:first-child) { &:not(:first-child) {
border-left: var(--dv-group-gap-size) solid transparent; .groupview {
border-left: var(--dv-group-gap-size) solid transparent;
}
} }
} }
} }
@ -31,11 +35,16 @@
&.vertical { &.vertical {
> .view-container > .view { > .view-container > .view {
&:not(:last-child) { &:not(:last-child) {
border-bottom: var(--dv-group-gap-size) solid transparent; .groupview {
border-bottom: var(--dv-group-gap-size) solid
transparent;
}
} }
&:not(:first-child) { &:not(:first-child) {
border-top: var(--dv-group-gap-size) solid transparent; .groupview {
border-top: var(--dv-group-gap-size) solid transparent;
}
} }
} }
} }