From e7cc4c753c650e8a3b3b9380b746d0a0b7f364dd Mon Sep 17 00:00:00 2001 From: Benno Tielen Date: Fri, 7 Mar 2025 10:32:45 +0100 Subject: [PATCH] fix: deprecated division --- src/components/SideSlider/styles.module.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SideSlider/styles.module.scss b/src/components/SideSlider/styles.module.scss index e2be287..aee36f2 100644 --- a/src/components/SideSlider/styles.module.scss +++ b/src/components/SideSlider/styles.module.scss @@ -35,8 +35,8 @@ $iconSize: 150px; border-top-left-radius: $border-radius; border-bottom-left-radius: $border-radius; background-color: $shade1; - left: $iconSize/2; - padding-left: $iconSize/2; + left: calc($iconSize/2); + padding-left: calc($iconSize/2); min-height: 450px; width: $width; color: #ffffff;