<===> input.scss
$breakpoint: 'tablet';
.-#{$breakpoint} {
color: #FFF;
}
<===> output.css
.-tablet {
color: #FFF;
}
<===> input.scss
$breakpoint: 'tablet';
.-#{$breakpoint} {
color: #FFF;
}
<===> output.css
.-tablet {
color: #FFF;
}