Morning, is it poss to stop scrollmate doing its thing below a breakpoint? I know there is the no touch thing, but wondering if I can also specify no scroll below a set point.
it can be applied to all instances of SM2 on the page.
Ta.
Morning, is it poss to stop scrollmate doing its thing below a breakpoint? I know there is the no touch thing, but wondering if I can also specify no scroll below a set point.
it can be applied to all instances of SM2 on the page.
Ta.
@media screen and (max-width: 700px) {
.animate-sm[style] {
transition: none !important;
transform: none !important;
opacity: 1 !important;
}
}
Thanks Tav.