Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2016-12-01 08:27:58 +0300
committerMike Greiling <mike@pixelcog.com>2016-12-01 08:27:58 +0300
commit410cb1bf18edf17357babf6ae38e77012e187818 (patch)
treef1205d135c77e3ef20ce6e9350a9b558f8f17537 /app/assets/stylesheets/framework/calendar.scss
parent24e5a1e8db943be346b4f7f4fb49326ad0e5eb9e (diff)
fix incorrect max-width media queries
Diffstat (limited to 'app/assets/stylesheets/framework/calendar.scss')
-rw-r--r--app/assets/stylesheets/framework/calendar.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/calendar.scss b/app/assets/stylesheets/framework/calendar.scss
index 8642b7530e2..81852158b94 100644
--- a/app/assets/stylesheets/framework/calendar.scss
+++ b/app/assets/stylesheets/framework/calendar.scss
@@ -2,7 +2,7 @@
padding-left: 0;
padding-right: 0;
- @media (min-width: $screen-sm-min) and (max-width: $screen-lg-min) {
+ @media (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
overflow-x: scroll;
}
}