SCSS SASS на псевдо-классе Hover

.class {
    margin:20px;
    &:hover {
        color:yellow;
    }
}
Clever Crane