gulp-sass/test/scss/inheritance.scss

16 lines
189 B
SCSS
Raw Normal View History

2014-01-22 21:52:04 +01:00
@import "includes/cats";
2014-01-19 09:41:04 +01:00
2013-09-01 01:53:11 +02:00
.error {
2014-01-19 09:41:04 +01:00
border: #f00;
2013-09-01 01:53:11 +02:00
background: #fdd;
}
2014-01-19 09:41:04 +01:00
2013-09-01 01:53:11 +02:00
.error.intrusion {
font-size: 1.3em;
font-weight: bold;
}
.badError {
@extend .error;
border-width: 3px;
}