79105419

Date: 2024-10-19 16:31:19
Score: 1
Natty:
Report link

The only way I found to achieve this is to convert scss variables in css custom properties.

In _variables.scss file I have all scss variables:

$orange: hsl(25, 96%, 49%);

Then I convert them in normal css variables:

:root {
    --orange: #{$orange};
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RufyLegend