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
responsive-tools/src/_breakpoints.scss
Line 36 in cc4937e
On the above line the call to str-slice uses 0 as the index argument, while the language specification explicitly says that index starts at 1: http://sass-lang.com/documentation/Sass/Script/Functions.html#str_slice-instance_method
Note that unlike some languages, the first character in a Sass string is number 1, the second number 2, and so forth.
All SASS/SCSS compilers I tried locally are refusing to work with this file complaining about the index.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
responsive-tools/src/_breakpoints.scss
Line 36 in cc4937e
On the above line the call to str-slice uses 0 as the index argument, while the language specification explicitly says that index starts at 1: http://sass-lang.com/documentation/Sass/Script/Functions.html#str_slice-instance_method
All SASS/SCSS compilers I tried locally are refusing to work with this file complaining about the index.
The text was updated successfully, but these errors were encountered: