JavaScript Easy Redimensip pour la taille de l'écran

//https://cdnjs.cloudflare.com/ajax/libs/enquire.js/2.1.6/enquire.min.js

// this code allows for an Obj instance to run methods on - to call code when a screen change occurs
class ScreenSize{

    addCSS(maxOrMin, screenSize, element, style, change){
     enquire.register("screen and ("+maxOrMin+"-width: "+screenSize+")", ()=>{    
       document.querySelector(element).style[style] = change;
    });
  }
}
The Arborist