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:42:16 +0300
committerMike Greiling <mike@pixelcog.com>2016-12-01 08:42:16 +0300
commitcc1c9f8bedc102033492abfb3846e01da142f288 (patch)
tree03afe9da6289adcc28d47f289bba55e059284ec5 /app/assets/stylesheets/framework/pagination.scss
parent410cb1bf18edf17357babf6ae38e77012e187818 (diff)
fix incorrect min-width media queries
Diffstat (limited to 'app/assets/stylesheets/framework/pagination.scss')
-rw-r--r--app/assets/stylesheets/framework/pagination.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/pagination.scss b/app/assets/stylesheets/framework/pagination.scss
index cb2c351c368..b37c1d0d670 100644
--- a/app/assets/stylesheets/framework/pagination.scss
+++ b/app/assets/stylesheets/framework/pagination.scss
@@ -43,7 +43,7 @@
/**
* Small screen pagination
*/
-@media (max-width: $screen-xs) {
+@media (max-width: $screen-xs-min) {
.gl-pagination {
.pagination li a {
padding: 6px 10px;
@@ -62,7 +62,7 @@
/**
* Medium screen pagination
*/
-@media (min-width: $screen-xs) and (max-width: $screen-md-max) {
+@media (min-width: $screen-xs-min) and (max-width: $screen-md-max) {
.gl-pagination {
.page {
display: none;