Answers for "how to hover sass"

CSS
4

scss hover

.class {
    margin:20px;
    &:hover {
        color:yellow;
    }
}
Posted by: Guest on June-20-2020
1

scss hover

.button {
    &:hover {
      opacity: 1;
    }
    &:active {
      position: relative;
      top: 7px;
      box-shadow: none;
    }
}
Posted by: Guest on April-01-2021

Browse Popular Code Answers by Language