summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/sass/utils/_functions.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/sass/utils/_functions.scss b/webapp/sass/utils/_functions.scss
index baedd72c5..f399060cc 100644
--- a/webapp/sass/utils/_functions.scss
+++ b/webapp/sass/utils/_functions.scss
@@ -1,7 +1,7 @@
@charset "UTF-8";
@function em($pixels, $context: 14px) {
- @return #{$pixels/$context}em
+ @return ($pixels / $context * 1em)
}
@function alpha-color($color, $amount) {
@@ -20,4 +20,4 @@
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
-} \ No newline at end of file
+}