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 {
width: 100%;
overflow: auto;
@media (max-width: $screen-md-max) {
.deployments-container {
width: 100%;
overflow: auto;
}
}
.environments-list-loading {

View File

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