I have a global ul styles like below in my global.scss file:
ul {
list-style: none;
margin: 0;
padding: 0;
}
I need some way to manipulate this that not select ul's in a specific div with a class jodit-wrapper if I do something like below it doesn't work:
ul:not(.jodit-wrapper) {
list-style: none;
margin: 0;
padding: 0;
}
what is the correct way for doing this?