fix(gantt): ensure chart container fills viewport width for narrow date ranges

Adds min-inline-size: 100% to .gantt-container so the scrollable area
never appears narrower than the card width, even with short date ranges.

Ref #2337
This commit is contained in:
kolaente 2026-04-02 18:55:02 +02:00 committed by kolaente
parent 48a91ce32c
commit f25147d09c
1 changed files with 1 additions and 0 deletions

View File

@ -751,6 +751,7 @@ onUnmounted(() => {
<style scoped lang="scss">
.gantt-container {
overflow-x: auto;
min-inline-size: 100%;
}
.gantt-chart-wrapper {