I have the following css:
.sign-up-cross.clone{
top: 10px!important;
}
I have a modal with a "invite-contacts-modal" class which contain elements with "sign-up-cross clone" and I don't want that those element will have the css style above.
I try to use:
:not(.invite-contacts-modal) .sign-up-cross.clone{
top: 10px!important;
}
It doesn't work.