Right now Webflow doesn’t allow you to choose which breakpoints interactions will be active on and that’s a bummer.
I figured out a brute force solution for one of my specific cases, so maybe it’ll help someone else sort something out. Won’t work in every case.
Example:
When I hover over one element, another element shows up. The interaction changes height and opacity. I needed to disable this on tablet and below. I used a media query to muscle the element to be display: none on that breakpoint, keeping it hidden even though the interaction runs.
<style>
@media (max-width: 991px) { /* tablet and below */
.dropdown-list { display: none !important; }}
</style>
Abuse as you like. It ain’t pretty but it got the job done.