summaryrefslogtreecommitdiff
path: root/scss/tests/files/bugs/at-rules-interpolation.css
diff options
context:
space:
mode:
Diffstat (limited to 'scss/tests/files/bugs/at-rules-interpolation.css')
-rw-r--r--scss/tests/files/bugs/at-rules-interpolation.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/scss/tests/files/bugs/at-rules-interpolation.css b/scss/tests/files/bugs/at-rules-interpolation.css
new file mode 100644
index 0000000..4c3b513
--- /dev/null
+++ b/scss/tests/files/bugs/at-rules-interpolation.css
@@ -0,0 +1,13 @@
+@media (max-width: 900px) {
+ div {
+ color: red;
+ }
+}
+@keyframes spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(-359deg);
+ }
+}