Answers for "&:disabled not working sass"

CSS
0

&:disabled not working sass

.btn {
  &[disabled] {
    opacity: 0.6;
  }
  &:hover, &:active {
    &:not([disabled]) {
      background-color: darken($orange, 15);
    }
  }
}
Posted by: Guest on January-26-2022

Code answers related to "&:disabled not working sass"

Browse Popular Code Answers by Language