5 lines
117 B
SCSS
Raw Normal View History

@mixin calc($property, $value) {
#{$property}: -webkit-calc(#{$value});
#{$property}: calc(#{$value});
}