From 0b68fc177d04357701ceb417346b2a6968b1a8f0 Mon Sep 17 00:00:00 2001 From: Guust Nieuwenhuis Date: Wed, 24 Aug 2022 12:13:08 +0200 Subject: [PATCH] replace deprecated / for division by calc function call --- sass/bootstrap-select.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/bootstrap-select.scss b/sass/bootstrap-select.scss index 0c5e5cc87..8b7ffc515 100644 --- a/sass/bootstrap-select.scss +++ b/sass/bootstrap-select.scss @@ -23,7 +23,7 @@ @function fade($color, $amnt) { @if $amnt > 1 { - $amnt: $amnt / 100; // convert to percentage if int + $amnt: calc($amnt / 100); // convert to percentage if int } @return rgba($color, $amnt); }