fix(display): update to correct css classes

This commit is contained in:
Brandy Carney 2019-03-07 11:26:17 -05:00
parent 8174de1f78
commit cabbeb2c2f
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
@include media-breakpoint-up($breakpoint, $screen-breakpoints) {
// Provide `ion-hide-{bp}-up` classes for hiding the element based
// on the breakpoint
.ion-hide-#{$infix}-up {
.ion-hide#{$infix}-up {
display: none !important;
}
}
@ -24,7 +24,7 @@
@include media-breakpoint-down($breakpoint, $screen-breakpoints) {
// Provide `ion-hide-{bp}-down` classes for hiding the element based
// on the breakpoint
.ion-hide-#{$infix}-down {
.ion-hide#{$infix}-down {
display: none !important;
}
}