summaryrefslogtreecommitdiff
path: root/scss/tests/files/bugs/at-rules-interpolation.css
blob: 4c3b513bd6a6ca822bd4f1ea006212e6aace569b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@media (max-width: 900px) {
  div {
    color: red;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}