<input type="checkbox" >
<aup-switch>
<input type="checkbox" >
</aup-switch>
I have a css style for input[type="checkbox"]
, but I don't want it to be applied to the input components inside aup-switch
.
I tried using not
selector of css, but not working.
input[type="checkbox"]:not(aup-switch input[type="checkbox"]) {
&+label {
position: relative;
cursor: pointer;
padding: 0;
}
}