I'd like to import a colour palette using SASS and @if
statement.
My code :
@if $look == default and not $look-chart-color or $look-chart-color == default {
@import 'default';
}
@if $look == espacefourn and not $look-chart-color or $look-chart-color == espacefourn {
@import 'espacefourn';
}
@if $look == ria and not $look-chart-color or $look-chart-color == ria {
@import 'ria';
}
Issue : Error: Import directives may not be used within control directives or mixins.