Skip to content
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

[5.1.0] Unnecessary dash after prefix for :root #34687

Closed
elemis opened this issue Aug 5, 2021 · 1 comment
Closed

[5.1.0] Unnecessary dash after prefix for :root #34687

elemis opened this issue Aug 5, 2021 · 1 comment
Labels

Comments

@elemis
Copy link

elemis commented Aug 5, 2021

There is an extra "-" in :root font-size after $variable-prefix in _reboot.scss which causes issues:

:root {
  @if $font-size-root != null {
    font-size: var(--#{$variable-prefix}-root-font-size);
  }

Which is supposed to be:

:root {
  @if $font-size-root != null {
    font-size: var(--#{$variable-prefix}root-font-size);
  }

@GeoSot
Copy link
Member

GeoSot commented Aug 5, 2021

closed via #34679

@GeoSot GeoSot closed this as completed Aug 5, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants