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

SCSS $variable will be changed to lowercase #132

Closed
ntswor opened this issue Apr 29, 2016 · 1 comment
Closed

SCSS $variable will be changed to lowercase #132

ntswor opened this issue Apr 29, 2016 · 1 comment
Labels

Comments

@ntswor
Copy link

ntswor commented Apr 29, 2016

I have a view SCSS variables defined using camelCase, but those will be changed to lower case names only.
E.g.

stage {
  $sidebarWidth: 473px;

  #sidebar {
    width: $sidebarWidth;
  }
}

will be changed to:

stage {
  $sidebarwidth: 473px;

  #sidebar {
    width: $sidebarWidth;
  }
}

Note that only the first occurrence will be changed but not the second one. I would prefer if the SCSS $variable names wouldn't be changed at all since sometimes the rely on imported values where you have no access of changing them.

@matype matype added the bug label Apr 29, 2016
@matype
Copy link
Owner

matype commented Apr 29, 2016

@ntswor Thank you for your report.

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