Cuberto / mouse-follower

A powerful javascript library to create amazing and smooth effects for the mouse cursor on your website.
MIT License
724 stars 60 forks source link

How to remove the cursor from responsive designs #14

Open soniasaini0075 opened 1 year ago

Giuseppetm commented 1 year ago

You have to manipulate .mf-cursor class; set the max-width to anything you like.

.mf-cursor { 
  @media screen and (max-width: 769px) {
    display: none;
  }
}