Skip to content
Snippets Groups Projects
Commit cc1c9f8b authored by Mike Greiling's avatar Mike Greiling
Browse files

fix incorrect min-width media queries

parent 410cb1bf
No related branches found
No related tags found
1 merge request!7863Resolve "Improper use of bootstrap media query variables"
Pipeline #
Loading
@@ -43,7 +43,7 @@
Loading
@@ -43,7 +43,7 @@
/** /**
* Small screen pagination * Small screen pagination
*/ */
@media (max-width: $screen-xs) { @media (max-width: $screen-xs-min) {
.gl-pagination { .gl-pagination {
.pagination li a { .pagination li a {
padding: 6px 10px; padding: 6px 10px;
Loading
@@ -62,7 +62,7 @@
Loading
@@ -62,7 +62,7 @@
/** /**
* Medium screen pagination * 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 { .gl-pagination {
.page { .page {
display: none; display: none;
Loading
Loading
Loading
@@ -31,7 +31,7 @@
Loading
@@ -31,7 +31,7 @@
.last-commit { .last-commit {
@include str-truncated(506px); @include str-truncated(506px);
   
@media (min-width: $screen-sm-max) and (max-width: $screen-md-max) { @media (min-width: $screen-md-min) and (max-width: $screen-md-max) {
@include str-truncated(450px); @include str-truncated(450px);
} }
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment