Commit 453dec0a authored by Phil Hughes's avatar Phil Hughes

Merge branch '57551-collapse-board-list-fix' into 'master'

Add flex styles to board list only if board list is expanded

Closes #57551

See merge request gitlab-org/gitlab-ce!25113
parents 1eca4466 df5882ee
...@@ -221,7 +221,7 @@ export default { ...@@ -221,7 +221,7 @@ export default {
</script> </script>
<template> <template>
<div class="board-list-component d-flex flex-column"> <div class="board-list-component">
<div v-if="loading" class="board-list-loading text-center" aria-label="Loading issues"> <div v-if="loading" class="board-list-loading text-center" aria-label="Loading issues">
<gl-loading-icon /> <gl-loading-icon />
</div> </div>
......
...@@ -164,6 +164,13 @@ ...@@ -164,6 +164,13 @@
display: none; display: none;
} }
} }
&:not(.is-collapsed) {
.board-list-component {
display: flex;
flex-direction: column;
}
}
} }
.board-inner { .board-inner {
......
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