Saame määrata tingimusi, kui üks tingimus on täidetud siis täida seda fn.
@mixin textColor($size) {
font-size: $size;
@if $size>20px {
color: color(deepBlue);
}
@elseif $size < 20px {
color: red;
}
@else {
color: green;
}
};