Addressed deprecation warning in Sass code related to the use of the forward slash (/) for division outside of the calc() function. Replaced instances with the recommended syntax math.div($spacer, 4) or calc($spacer / 4). This change resolves the issue "fixed22" in the open-source project.
Addressed deprecation warning in Sass code related to the use of the forward slash (/) for division outside of the
calc()
function. Replaced instances with the recommended syntaxmath.div($spacer, 4)
orcalc($spacer / 4)
. This change resolves the issue "fixed22" in the open-source project.