You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEPRECATION WARNING on line 41 of C:/Users/admin/Desktop/blur-admin/src/sass/theme/_buttons.scss:
The operation #e85656 minus 24 is deprecated and will be an error in future versions.
Consider using Sass's color functions instead.
error:$color - $hover
correct :$color - #{$hover}
The text was updated successfully, but these errors were encountered:
Using adjust-color($color, $red: -$hover, $green: -$hover, $blue: -$hover); instead of the subtraction seems to give me the same result without the deprecation warning.
DEPRECATION WARNING on line 41 of C:/Users/admin/Desktop/blur-admin/src/sass/theme/_buttons.scss:
The operation
#e85656 minus 24
is deprecated and will be an error in future versions.Consider using Sass's color functions instead.
error:$color - $hover
correct :$color - #{$hover}
The text was updated successfully, but these errors were encountered: