You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@media only screen and (max-width: 600px)
.is-visible-mobile.is-visible-mobile {
display: block !important;
visibility: visible;
}
After:
media only screen and (max-width: 988px)
.is-hidden-tablet, .is-visible-mobile, .is-visible-desktop {
display: none !important;
visibility: hidden;
}
Meaning the content is never visible. The visible class needs more specificity.
Workaround:
// Fix a bug where sensible has the wrong specificity for mobile/hidden
@include breakpoint(mobile){
.is-visible-mobile.is-visible-mobile {
display: block !important;
visibility:visible;
}
}
The text was updated successfully, but these errors were encountered:
When using the responsive visibility classes with:
The generated CSS has:
After:
Meaning the content is never visible. The visible class needs more specificity.
Workaround:
The text was updated successfully, but these errors were encountered: