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} );
 }