Skip to content
Snippets Groups Projects
Commit 8cd20069 authored by Martin Wortschack's avatar Martin Wortschack
Browse files

Merge branch 'widen-issuable-on-mobile' into 'master'

Widen issuable list only on mobile to be mobile-friendly

See merge request gitlab-org/gitlab!41249
parents d64f1312 510185f0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -348,11 +348,11 @@
}
 
@include media-breakpoint-down(sm) {
.issues-details-filters {
padding-top: 0;
padding-bottom: 0;
.issues-details-filters,
.epics-details-filters {
padding-top: $gl-padding-8;
padding-bottom: $gl-padding-8;
background-color: $white;
border-top: 0;
}
 
.boards-switcher {
Loading
Loading
Loading
Loading
@@ -97,13 +97,8 @@
}
 
/* Small devices (phones, tablets, 768px and lower) */
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
width: 100%;
&.mobile-separator {
border-bottom: 1px solid $border-color;
margin-bottom: $gl-padding-8;
}
}
}
 
Loading
Loading
Loading
Loading
@@ -996,3 +996,15 @@
border: 0;
}
}
@include media-breakpoint-down(sm) {
// Overriding the following rule with the negative margin
// https://gitlab.com/gitlab-org/gitlab/-/blob/146c43c931c3743a140529307aea616e4aa9ff21/app/assets/stylesheets/framework/sidebar.scss#L1-5
.container-fluid {
.issuable-list,
.issues-filters,
.epics-filters {
margin: 0 (-$gl-padding);
}
}
}
---
title: Widen issuable list only on mobile to be mobile-friendly
merge_request: 41249
author: Takuya Noguchi
type: other
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment