summaryrefslogtreecommitdiff
path: root/scss/tests/files/regressions/issue-258.css
blob: 27feb03fac6b0337d3cfb35e0040a41555a11dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@media screen and (min-width: anything) {
  #A {
    any-property: any-value;
  }
}

#B {
  my-property: this-should-be-before-media-query;
}
@media screen and (min-width: 100px) {
  #B {
    my-property: this-should-be-last;
  }
}