aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/interpolation-in-property-name.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/interpolation-in-property-name.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/interpolation-in-property-name.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/interpolation-in-property-name.scss b/theme-compiler/tests/resources/automatic/scss/interpolation-in-property-name.scss
new file mode 100644
index 0000000000..9fc2e7c76e
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/interpolation-in-property-name.scss
@@ -0,0 +1,9 @@
+$side: top;
+$radius: 10px;
+
+.rounded-#{$side} {
+ border-#{$side}-radius: $radius;
+ -moz-border-radius-#{$side}: $radius;
+ #{$side}-radius: $radius;
+ no-interpolation: no-interpolation;
+} \ No newline at end of file