Sass
A collection of Sass tips & resources.
Use interpolation when … e.g.,
$space: 12px;
button {
margin: #{$space * 2} 0;
}
https://stackoverflow.com/questions/38324326/sass-multiplication-with-units/49951058
A collection of Sass tips & resources.
Use interpolation when … e.g.,
$space: 12px;
button {
margin: #{$space * 2} 0;
}
https://stackoverflow.com/questions/38324326/sass-multiplication-with-units/49951058