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
Running sass 1.65 changelog against the qg-main.scss web-template will result in errors with usage of function rem (expecting 2 parameters, got 1)
rem
For Example: https://github.com/qld-gov-au/web-template-release/blob/master/scss/scss-general/bootstrap/_variables.scss
$h1-font-size: rem(25px) !default; $h2-font-size: rem(20px); $h3-font-size: rem(18px) !default; $h4-font-size: $font-size-base !default; $h5-font-size: rem(12px) !default; $h6-font-size: rem(11px) !default;
Execute sass (dart-sass) against qg-main.scss npx sass qg-main.scss Note errors on output.
npx sass qg-main.scss
There is a function defined as rem in css/scss-general/bootstrap/_rem.scss, perhaps this is not overwriting the sass internal rem in the new version?
css/scss-general/bootstrap/_rem.scss
revert to sass 1.64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running sass 1.65 changelog against the qg-main.scss web-template will result in errors with usage of function
rem
(expecting 2 parameters, got 1)For Example:
https://github.com/qld-gov-au/web-template-release/blob/master/scss/scss-general/bootstrap/_variables.scss
Repo Steps
Execute sass (dart-sass) against qg-main.scss
npx sass qg-main.scss
Note errors on output.
There is a function defined as
rem
incss/scss-general/bootstrap/_rem.scss
, perhaps this is not overwriting the sass internalrem
in the new version?Workaround
revert to sass 1.64
The text was updated successfully, but these errors were encountered: