Skip to content

Commit

Permalink
Amend CSS mixin to accept multiple values
Browse files Browse the repository at this point in the history
  • Loading branch information
CraigBowler committed Apr 14, 2018
1 parent b5c961c commit a0eceae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CleanBuild/scss/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Auto prefix
@mixin css($property, $value) {
@mixin css($property, $value...) {
@each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
#{$prefix}#{$property}: $value;
}
Expand Down

0 comments on commit a0eceae

Please sign in to comment.