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
While assisting a developer working on installing the auro-badge component it was discovered that the CSS variable fallbacks are incorrectly written in Sass causing the incorrect value to be output into CSS.
This issue can be closed once the areas that require interpolation have been addressed and the correct fallback value is reflected in the CSS versus the Sass variable reference.
The text was updated successfully, but these errors were encountered:
This commit updates all the incorrect Sass variable injections that
require interpolation.
On branch dsande/fallback
Your branch is up to date with 'origin/dsande/fallback'.
Changes to be committed:
modified: src/color.scss
modified: src/style.scss
This commit updates all the incorrect Sass variable injections that
require interpolation.
On branch dsande/fallback
Your branch is up to date with 'origin/dsande/fallback'.
Changes to be committed:
modified: src/color.scss
modified: src/style.scss
Please verify the version of auro-badge you have installed
@latest
Please describe the bug
While assisting a developer working on installing the auro-badge component it was discovered that the CSS variable fallbacks are incorrectly written in Sass causing the incorrect value to be output into CSS.
The code:
auro-badge/src/color.scss
Lines 94 to 99 in 7b2afb9
The output in the inspector:
Reproducing the error on the docsite
This issue is reproducible on the Auro docsite
Expected behavior
The Sass should be updated so that the
$fallback
variable is transformed into the desired hex value for the CSS.What browsers are you seeing the problem on?
Chrome
Additional context
When constructing a CSS variable using Sass, it is important to remember that interpolation is currently required. E.g.
Exit criteria
This issue can be closed once the areas that require interpolation have been addressed and the correct fallback value is reflected in the CSS versus the Sass variable reference.
The text was updated successfully, but these errors were encountered: