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
Just a reminder for now as TADC is now using dart-sass (as node-sass is deprecated) but this library still uses node-sass to compile the the distribution.
If anything uses the SCSS files here and compiles them manually with dart-sass they'll get these warnings:
[exec] ???
[exec] 56 ??? margin-top: ($line-height-computed / 2);
[exec] ??? ^^^^^^^^^^^^^^^^^^^^^^^^^
[exec] ???
[exec] www/bower/bootstrap-sass/assets/stylesheets/bootstrap/_type.scss 56:16 @import
[exec] www/bower/bootstrap-sass/assets/stylesheets/_bootstrap.scss 16:9 @import
[exec] www/bower/bootstrap-sass/app.scss 3:9 @use
[exec] sass/bundle-css.scss 1:1 root stylesheet
[exec]
[exec] DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
[exec]
[exec] Recommendation: math.div($line-height-computed, 2)
[exec]
[exec] More info and automated migrator: https://sass-lang.com/d/slash-div
It mentions how to fix them above with math.div(...).
The text was updated successfully, but these errors were encountered:
Just a reminder for now as TADC is now using dart-sass (as node-sass is deprecated) but this library still uses node-sass to compile the the distribution.
If anything uses the SCSS files here and compiles them manually with dart-sass they'll get these warnings:
It mentions how to fix them above with
math.div(...)
.The text was updated successfully, but these errors were encountered: