sass extention code example
Example 1: scss extend
.error:hover {
background-color: #fee;
}
.error--serious {
@extend .error;
border-width: 3px;
}
Example 2: scss
sass --watch app/sass:public/stylesheets
.error:hover {
background-color: #fee;
}
.error--serious {
@extend .error;
border-width: 3px;
}
sass --watch app/sass:public/stylesheets