SublimeText / Sass

Sass and SCSS syntax for Sublime Text
https://packagecontrol.io/packages/Sass
MIT License
51 stars 8 forks source link

Interpolation in properties #54

Closed sandrojohanides closed 7 months ago

sandrojohanides commented 5 years ago

Couple of problems with this:

screen shot 2018-12-10 at 13 49 20

    #{nth($dirs, 1)}: 100%; // `bottom: 100%` by default
    #{nth($dirs, 2)}: $offset; // `left: 50%` by default

    height: 0;
    width: 0;
    margin: auto;
    margin-#{nth($dirs, 2)}: (-$size / 2);

    border: solid transparent;
    border-#{nth($dirs, 1)}-color: $color;
    border-width: ($size / 2);
braver commented 5 years ago

Right now it only supports interpolation of variables, not of full expressions. So, this issue is correct and support for sass script expressions should be added here. Thanks!

braver commented 7 months ago

closed via #96