bug: --group-gap-size overflow fix

This commit is contained in:
mathuo 2024-05-24 19:50:25 +01:00
parent 55d9ca31d4
commit 7f750330b1
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -19,27 +19,36 @@
&.horizontal { &.horizontal {
> .view-container > .view { > .view-container > .view {
&:not(:last-child) { &:not(:last-child) {
.groupview {
border-right: var(--dv-group-gap-size) solid transparent; border-right: var(--dv-group-gap-size) solid transparent;
} }
}
&:not(:first-child) { &:not(:first-child) {
.groupview {
border-left: var(--dv-group-gap-size) solid transparent; border-left: var(--dv-group-gap-size) solid transparent;
} }
} }
} }
}
&.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) {
.groupview {
border-top: var(--dv-group-gap-size) solid transparent; border-top: var(--dv-group-gap-size) solid transparent;
} }
} }
} }
} }
}
} }
.groupview { .groupview {