summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss/extends.scss
blob: c9e0f8538186ad7db1719cf6e38ef7fe9f81b671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.error {
  border: 1px #f00;
  background: #fdd;
}
.error.intrusion {
  font-size: 1.3em;
  font-weight: bold;
}

.badError {
  @extend .error;
  border-width: 3px;
}