creativetimofficial / blk-design-system

231 stars 129 forks source link

Error in SCSS #9

Open tiaxter opened 5 years ago

tiaxter commented 5 years ago

In /custom/_icons.scss in the calc operation you need to interpolate SCSS variables

rarestoma commented 5 years ago

Hi,

Thank you for working with our products.

Can you please tell us more or show us an example of how you would like this interpolation to look like?

All the best, Rares

tiaxter commented 5 years ago

.icon-xl + .icon-text { width: calc(100% - $icon-size-xl - 1); } For example in this calc function you put directly the variable, instead you need to interpolate the variable to "render" into the calc function to get the correct dimension .icon-xl + .icon-text { width: calc(100% - #{$icon-size-xl} - 1); }

rarestoma commented 5 years ago

Hello,

Thank you for taking the time.

We will update it the next version.

All the best, Rares