I am not a pro at css but I need somehow to access this styles:
.file__add:before {
content: '';
width: 56px;
height: 56px;
}
I want to change this css snippet but I only know how to point to the main class (file__add):
$('.file__add').css('width', '200px')
How to point to that class with (:before) tag? Hope you got it, please help!