We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fccb074 commit a5a8d79Copy full SHA for a5a8d79
3 files changed
tests/inputs/interpolation.scss
@@ -132,4 +132,11 @@ div {
132
133
.pagination {
134
@include pagination-mixin(5px);
135
+}
136
+
137
+@mixin set-border($width) {
138
+ border: $width solid #000;
139
140
+.element {
141
+ @include set-border(#{2px}); // compiles to "2px solid #000"
142
}
tests/outputs/interpolation.css
@@ -74,3 +74,6 @@ a.badge {
74
75
.pagination .page-item:first-child .page-link {
76
border-radius: 5px; }
77
78
79
+ border: 2px solid #000; }
tests/outputs_numbered/interpolation.css
@@ -93,3 +93,6 @@ a.badge {
93
/* line 126, inputs/interpolation.scss */
94
95
96
+/* line 140, inputs/interpolation.scss */
97
98
0 commit comments