summaryrefslogtreecommitdiffstats
path: root/assets/css/_functions.scss
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-06-11 09:44:04 +0200
committerVolpeon <git@volpeon.ink>2022-06-11 09:44:04 +0200
commit575278aba99139635adc3b1f9385befe57102541 (patch)
treed98a160167610717da37f6340b3884ba4224fe5d /assets/css/_functions.scss
parentUpdate (diff)
downloadvolpeon.ink-575278aba99139635adc3b1f9385befe57102541.tar.gz
volpeon.ink-575278aba99139635adc3b1f9385befe57102541.tar.bz2
volpeon.ink-575278aba99139635adc3b1f9385befe57102541.zip
Re-implemented design via iro-design
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 a641a34..107cba7 100644
--- a/assets/css/_functions.scss
+++ b/assets/css/_functions.scss
@@ -1,6 +1,6 @@
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: 16px) {
4 @return math.div(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