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 "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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user