hover button scss code example
Example: hover button scss
button {
// normal css
&:hover {
cursor: pointer;
background-color: cyan;
}
}
button {
// normal css
&:hover {
cursor: pointer;
background-color: cyan;
}
}