_calc.scss 117 B

1234
  1. @mixin calc($property, $value) {
  2. #{$property}: -webkit-calc(#{$value});
  3. #{$property}: calc(#{$value});
  4. }