summaryrefslogtreecommitdiff
path: root/scss/tests/files/regressions/issue-258.css
blob: 559cc058a69809c8d81b162dfb4c2a712ea1a3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@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;
  }
}