I'm looking for some documentation on Mixins specifically for .Sass
Not .Scss
but due to the naming conventions they keep coming up with the same search results.
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: calculateRem($size);
}
@mixin
becomes =
but further then this I don't know what function
become etc....