Commit 56e5160e authored by Lukas Eipert's avatar Lukas Eipert Committed by Phil Hughes

Issue Boards: Ensure that horizontal scroll bars are shown on overflow

parent c8c76ee8
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
white-space: nowrap; white-space: nowrap;
} }
@media (min-width: $screen-sm-min) { @media (min-width: $screen-md-min) {
.issue-boards-content.is-focused { .issue-boards-content.is-focused {
position: fixed; position: fixed;
width: 100%; width: 100%;
...@@ -79,7 +79,8 @@ ...@@ -79,7 +79,8 @@
z-index: 9000; z-index: 9000;
.boards-list { .boards-list {
height: calc(100vh - 50px); height: calc(100vh - #{$issue-boards-filter-height});
overflow-x: scroll;
} }
.issue-boards-sidebar { .issue-boards-sidebar {
...@@ -690,7 +691,6 @@ ...@@ -690,7 +691,6 @@
font-size: 9px; font-size: 9px;
line-height: 15px; line-height: 15px;
border-radius: 50%; border-radius: 50%;
} }
.modal-filters { .modal-filters {
......
---
title: 'Issue Boards: Ensure that horizontal scroll bars are shown on overflow'
merge_request: 4944
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