From ebbf02d9aa3b963f665a8a3915b6c96f0c9b1916 Mon Sep 17 00:00:00 2001 From: aleidk Date: Thu, 14 Mar 2024 12:06:26 -0300 Subject: [PATCH] style(Style): change division method to prevent warnings --- src/assets/style/_utils.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/assets/style/_utils.scss b/src/assets/style/_utils.scss index d29150c..5f256be 100644 --- a/src/assets/style/_utils.scss +++ b/src/assets/style/_utils.scss @@ -195,20 +195,20 @@ } @for $i from 0 through 100 { .w-#{$i} { - width: percentage($i / 100); + width: percentage(calc($i / 100)); } .h-#{$i} { - height: percentage($i / 100); + height: percentage(calc($i / 100)); } } @include mixins.responsive-steps(0, 100) using ($size-name, $index) { .w-#{$size-name}-#{$index} { - width: percentage($index / 100); + width: percentage(calc($index / 100)); } .h-#{$size-name}-#{$index} { - height: percentage($index / 100); + height: percentage(calc($index / 100)); } }