fix(css): update responsive display media queries (#18601)

BREAKING CHANGES

The responsive display classes found in the `display.css` file have had their media queries updated to better reflect how they should work. Instead of using the maximum value of that breakpoint (for `.ion-hide-{breakpoint}-down` classes) the maximum of the media query will be the minimum of that breakpoint. 

fixes #18600
This commit is contained in:
Oori
2019-10-09 00:17:30 +03:00
committed by Brandy Carney
parent bd22926c49
commit 5d6e077067
3 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@
display: none !important;
}
// Adds hidden attributes
// Adds hidden classes
@each $breakpoint in map-keys($screen-breakpoints) {
$infix: breakpoint-infix($breakpoint, $screen-breakpoints);