-
-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
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
Can't use inherit value anymore since 0.8.0 #2741
Can't use inherit value anymore since 0.8.0 #2741
Comments
I can confirm I have the same issue... same version, same error. The
|
Why would I'm working an a PR to fix this. Thank you @ibdf for your help! |
Use `$grey-darker` and `$grey` as default instead of `$text-strong` and `$text-light` which may contain the "inherit" value (jgthms#2741)
This is about Bulma.
Overview of the problem
This is about the Bulma CSS framework
I'm using Bulma version [0.8.0]
This is a Sass issue: I'm using version [0.8.0]
Description
Before version 0.8.0, we were able to use
inherit
values for colors. I used to override$text-strong
variable so it takes an inherited color instead of a hardcoded one.Since 0.8.0, using inherit value for this particular variable throws the following error when compiling with Sass:
I rolled back to Bulma 0.7.5 and Sass compiles without throwing any error.
An issue has been posted about this more than two years ago. @wrabit suggested to use
inherit
as a workaround but this is not working anymore. #821 (comment)Steps to Reproduce
$text-strong
variable with the valueinherit
Expected behavior
We should be able to use
inherit
values without Sass throwing an error.Actual behavior
Sass throws an error when compiling.
The text was updated successfully, but these errors were encountered: