diff options
author | Jesús <heckyel@hyperbola.info> | 2022-02-11 11:08:56 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-02-11 11:08:56 -0500 |
commit | 69e20fc11381bdc94c416f11527289a34ffb89ed (patch) | |
tree | 4b8969904958e4a377a9dd00cabd972c1ce22429 /demo/src/sass/layout | |
parent | 421de00c8bb27fd0cd01d19ed4c2681ef2d63446 (diff) | |
download | plyr-69e20fc11381bdc94c416f11527289a34ffb89ed.tar.lz plyr-69e20fc11381bdc94c416f11527289a34ffb89ed.tar.xz plyr-69e20fc11381bdc94c416f11527289a34ffb89ed.zip |
Diffstat (limited to 'demo/src/sass/layout')
-rw-r--r-- | demo/src/sass/layout/core.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/demo/src/sass/layout/core.scss b/demo/src/sass/layout/core.scss index 3687b7d2..b613a9fc 100644 --- a/demo/src/sass/layout/core.scss +++ b/demo/src/sass/layout/core.scss @@ -2,6 +2,8 @@ // Core // ========================================================================== +@use 'sass:math'; + html, body { display: flex; @@ -46,7 +48,7 @@ aside { .icon { fill: $color-twitter; - margin-right: ($spacing-base / 2); + margin-right: math.div($spacing-base, 2); } p { |