diff options
author | Volpeon <git@volpeon.ink> | 2021-11-26 20:50:13 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-11-26 20:50:13 +0100 |
commit | 71e5508dd0e619f4168f64ffff8fd8f6c15cb7db (patch) | |
tree | c7b5fd545a97c8cc552bf9495a07ca1e5f9ea1ad /assets | |
parent | Update (diff) | |
download | volpeon.ink-71e5508dd0e619f4168f64ffff8fd8f6c15cb7db.tar.gz volpeon.ink-71e5508dd0e619f4168f64ffff8fd8f6c15cb7db.tar.bz2 volpeon.ink-71e5508dd0e619f4168f64ffff8fd8f6c15cb7db.zip |
Update
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/_functions.scss | 2 |
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) { |