mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 17:18:21 -05:00
4 lines
109 B
SCSS
4 lines
109 B
SCSS
@mixin calc($property, $value) {
|
|
#{$property}: -webkit-calc(#{$value});
|
|
#{$property}: calc(#{$value});
|
|
}
|