Answers for "how to make hover in sass"

CSS
6

scss hover

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

edit hover with sass

You can nest this code inside the element which you want to modify in a specific
state. Example:

button
  background: none
  &:hover
     color: red
   
This would result in a hover modified button
Posted by: Guest on October-12-2021

Code answers related to "how to make hover in sass"

Browse Popular Code Answers by Language