gulp-sass/test/scss/inheritance.scss
2015-03-31 15:36:23 +01:00

18 lines
215 B
SCSS

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