gulp-sass/test/scss/inheritance.scss
2014-01-22 12:52:04 -08:00

16 lines
189 B
SCSS

@import "includes/cats";
.error {
border: #f00;
background: #fdd;
}
.error.intrusion {
font-size: 1.3em;
font-weight: bold;
}
.badError {
@extend .error;
border-width: 3px;
}