Now the webpage uses the style for scroll which was in the node-modules, I want to delete the property "-webkit-apperance" in my code, how can I do this?
<div class="fs-key" id="fs-id" >....</div>
body ::-webkit-scrollbar{
-webkit-apperance: none;
width:10px;
height:10px;
}
You can make a new rule for the elements you want to delete the property for like this:
body ::-webkit-scrollbar {
-webkit-appearance: none;
width:10px;
height:10px;
}
.reset-scrollbar::webkit-scrollbar {
-webkit-appearance: initial;
}
So the only thing you have to do is add the reset-scrollbar class to the classlist.