Prevent overflow with vertical scroll when we have space to show content

Adds changelog
This commit is contained in:
Filipa Lacerda 2016-12-13 12:32:27 +00:00
parent 0139896b37
commit 4408535462
3 changed files with 16 additions and 13 deletions

View File

@ -1,6 +1,8 @@
.deployments-container { @media (max-width: $screen-md-max) {
width: 100%; .deployments-container {
overflow: auto; width: 100%;
overflow: auto;
}
} }
.environments-list-loading { .environments-list-loading {

View File

@ -37,12 +37,13 @@
} }
} }
.content-list { @media (max-width: $screen-md-max) {
.content-list {
&.pipelines, &.pipelines,
&.builds-content-list { &.builds-content-list {
width: 100%; width: 100%;
overflow: auto; overflow: auto;
}
} }
} }
@ -666,10 +667,6 @@
min-width: 900px; min-width: 900px;
} }
.content-list.pipelines {
overflow: auto;
}
.stage { .stage {
max-width: 100px; max-width: 100px;
width: 100px; width: 100px;

View File

@ -0,0 +1,4 @@
---
title: Prevent overflow with vertical scroll when we have space to show content
merge_request: 8061
author: