feat: Replace deprecated sass color functions

This commit is contained in:
sthag 2025-10-25 09:03:58 +02:00
parent 41c5757790
commit 50b0d864c2
5 changed files with 15 additions and 7 deletions

View file

@ -1,3 +1,5 @@
@use "sass:color";
.demo__intro {
@extend .sec_main_center;
@extend .sec_main_status;
@ -33,12 +35,12 @@
}
.header_fancy {
background-color: transparentize($bravo_color, 0.4);
background-color: color.adjust($bravo_color, $alpha: -0.4);
nav {
a {
background-color: transparentize($alpha_color, 0.4);
background-color: color.adjust($alpha_color, $alpha: -0.4);
color: $alpha_color;
&:active,
@ -56,7 +58,7 @@
top: 0;
left: 0;
width: 100%;
background-color: transparentize($charlie_color, 0.4);
background-color: color.adjust($charlie_color, $alpha: -0.4);
nav {