Commit 44085354 authored by Filipa Lacerda's avatar Filipa Lacerda

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

Adds changelog
parent 0139896b
.deployments-container { @media (max-width: $screen-md-max) {
width: 100%; .deployments-container {
overflow: auto; width: 100%;
overflow: auto;
}
} }
.environments-list-loading { .environments-list-loading {
......
...@@ -37,12 +37,13 @@ ...@@ -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 @@ ...@@ -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;
......
---
title: Prevent overflow with vertical scroll when we have space to show content
merge_request: 8061
author:
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