We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, the package is currently using @import and lighten(), both of which are deprecated in the latest versions of Sass.
@import
lighten()
@use
@forward
color.adjust()
These deprecations may cause warnings or issues with future Sass releases, and it would be great if the package could be updated accordingly.
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deprecation Notice
Hi, the package is currently using
@import
andlighten()
, both of which are deprecated in the latest versions of Sass.@import
is deprecated in favor of@use
and@forward
.lighten()
will eventually be replaced withcolor.adjust()
and other new color functions.These deprecations may cause warnings or issues with future Sass releases, and it would be great if the package could be updated accordingly.
Thanks!
The text was updated successfully, but these errors were encountered: