ildar-k
5/27/2019 - 2:32 PM

If statement

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;
    }
};