How to add hover effect for product price in brooklyn theme??

remove previous code and add this one in theme.scss

span.grid-product__price{ display:none;color:red !important; }

add this code in theme.js

$(document).ready(function(){
$(“.grid-product__wrapper”).hover(function(){
$(“span.grid-product__price”).css(“display”, “block”);
}
});