riboseinc / jekyll-theme-open-project

Jekyll theme for site suite presenting your open software and specifications.
MIT License
30 stars 3 forks source link

Fix deprecation warning (for Dart Sass 2.0.0) #84

Closed ribose-jeffreylau closed 1 year ago

ribose-jeffreylau commented 1 year ago
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.

Recommendation: math.div($logo-space - $logo-side, 2) or calc(($logo-space - $logo-side) / 2)

More info and automated migrator: https://sass-lang.com/d/slash-div

    ╷
730 │             padding: 8px (($logo-space - $logo-side) / 2);
    │                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ╵
    jekyll-theme-open-project.scss 730:27                                                          @import
ronaldtse commented 1 year ago

Thank you @ribose-jeffreylau !