$(window).scroll(function() {
        if (($(this).scrollTop() > 102) && ($(window).width() > 768)) {  
            $('header').addClass("header-scroll");
          }
          else{
            $('header').removeClass("header-scroll");
          }
        });
I'm trying to make code that adds classes to the header on a page when it's scrolled on desktop only. how to do it right?