Commit 24909597 authored by Simon Knox's avatar Simon Knox

Merge branch 'bugfix/swimlanes-sticky-headers' into 'master'

Fix bug Swimlanes headers partially sticky

See merge request gitlab-org/gitlab!59944
parents ec5edc5f a8a73f8b
...@@ -178,7 +178,7 @@ export default { ...@@ -178,7 +178,7 @@ export default {
data_qa_selector="board_epics_swimlanes" data_qa_selector="board_epics_swimlanes"
> >
<swimlanes-loading-skeleton v-if="isLoading" /> <swimlanes-loading-skeleton v-if="isLoading" />
<div v-else> <div v-else class="board-swimlanes-content">
<component <component
:is="treeRootWrapper" :is="treeRootWrapper"
v-bind="treeRootOptions" v-bind="treeRootOptions"
......
...@@ -100,6 +100,10 @@ ...@@ -100,6 +100,10 @@
.board-swimlanes { .board-swimlanes {
overflow-x: auto; overflow-x: auto;
.board-swimlanes-content {
height: fit-content;
}
.board-add-new-list { .board-add-new-list {
height: calc(100% - 1rem); height: calc(100% - 1rem);
} }
......
---
title: Fix Swimlanes sticky headers
merge_request: 59944
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment