summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/bourbon/app/assets/stylesheets/css3/_calc.scss
blob: 8acda5ffe8032af5e0594e6d8367d969ba525d4b (plain)
1
2
3
4
5
6
@mixin calc($property, $value) {
  @include _bourbon-deprecate-for-prefixing("calc");

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