sylhare / Type-on-Strap

🎨 Simplistic, responsive jekyll based open source theme
https://sylhare.github.io/Type-on-Strap/
MIT License
813 stars 901 forks source link

Fix sass deprecation warning #412

Closed sylhare closed 11 months ago

sylhare commented 12 months ago

Description

When starting type-on-strap there's deprecation warning for a sass division:

Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.

Recommendation: math.div($padding-x-small, 2) or calc($padding-x-small / 2)

Applying the recommendation.