Skip to content
This repository was archived by the owner on Jul 24, 2019. It is now read-only.

Commit f00695e

Browse files
author
Aaron Imming
committed
Create vendor sass function
1 parent c186430 commit f00695e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/assets/sass/base/mixins.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@mixin vendor($property, $value) {
2+
$prefixes: ('moz', 'webkit', 'ms', 'o');
3+
@each $prefix in $prefixes {
4+
-#{$prefix}-#{$property}: #{$value};
5+
}
6+
#{$property}: #{$value};
7+
}

0 commit comments

Comments
 (0)