summaryrefslogtreecommitdiff
path: root/scss/tests/files/original-doctests/023-extend-multiple-2.scss
blob: c1c5929ecacd9cc20e62755290ff3fcf20a4f88c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@option compress:no, short_colors:yes, reverse_colors:yes;
.bad {
    color: red !important;
}
.error {
  border: 1px red;
  background-color: #fdd;
}
.attention {
  font-size: 3em;
  background-color: #ff0;
}
.seriousError {
  @extend .error, .attention;
  @extend .bad;
  border-width: 3px;
}