From 44e91b2ebaa775eac2a1aaee587a1360a8a82e15 Mon Sep 17 00:00:00 2001 From: Candifloss Date: Wed, 20 Aug 2025 19:32:08 +0530 Subject: [PATCH] Fix: SCSS Deprecation Warning https://sass-lang.com/documentation/breaking-changes/color-functions/#single-channel-adjustment-functions --- scss/_footer.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/_footer.scss b/scss/_footer.scss index b331c62..25295c4 100644 --- a/scss/_footer.scss +++ b/scss/_footer.scss @@ -1,4 +1,5 @@ @use 'vars' as *; +@use "sass:color"; .footer { position: fixed; @@ -30,7 +31,7 @@ transition: all 0.2s ease; &:hover { - background: lighten($accent-color, 8%); + background: color.adjust($accent-color, $lightness: 8%); } &:active {