From 496e692860b67da24aa530bcba003659e5405b57 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 15 Jun 2019 12:50:14 +0200 Subject: [PATCH] calc mixin shit --- platypush/backend/http/static/css/source/common/mixins.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platypush/backend/http/static/css/source/common/mixins.scss b/platypush/backend/http/static/css/source/common/mixins.scss index 9a735bf50..aa5f3757b 100644 --- a/platypush/backend/http/static/css/source/common/mixins.scss +++ b/platypush/backend/http/static/css/source/common/mixins.scss @@ -30,8 +30,8 @@ } @mixin calc($property, $expression) { - #{$property}: -webkit-calc(#{$expression}); - #{$property}: -moz-calc(#{$expression}); - #{$property}: calc(#{$expression}); + #{$property}: -webkit-calc( #{$expression} ); + #{$property}: -moz-calc( #{$expression} ); + #{$property}: calc( #{$expression} ); }