summaryrefslogtreecommitdiffstats
path: root/assets/css/_functions.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/_functions.scss')
-rw-r--r--assets/css/_functions.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/css/_functions.scss b/assets/css/_functions.scss
index 5e2518e..a641a34 100644
--- a/assets/css/_functions.scss
+++ b/assets/css/_functions.scss
@@ -1,7 +1,7 @@
1@use 'sass:math'; 1@use 'sass:math';
2 2
3@function px-to-em($s, $b: $font-size) { 3@function px-to-em($s, $b: $font-size) {
4 @return 1 / math.div($b, 1px) * math.div($s, 1px) * 1em; 4 @return math.div(1, math.div($b, 1px)) * math.div($s, 1px) * 1em;
5} 5}
6 6
7@function str-repeat($s, $n) { 7@function str-repeat($s, $n) {