Fix: SCSS Deprecation Warning
https://sass-lang.com/documentation/breaking-changes/color-functions/#single-channel-adjustment-functions
This commit is contained in:
parent
936e86fa2a
commit
44e91b2eba
@ -1,4 +1,5 @@
|
|||||||
@use 'vars' as *;
|
@use 'vars' as *;
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -30,7 +31,7 @@
|
|||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: lighten($accent-color, 8%);
|
background: color.adjust($accent-color, $lightness: 8%);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user