The Sass team seems to have removed this capability in Sass 3.4 but Im trying to namespace the Semantic UI CSS library so as not to conflict with other libraries and its not working.
.semantic-namespace {
@import "semantic-ui-css/semantic.min.css";
}
and Im getting this error
error sass/semantic-namespace.scss (Line 3: CSS import directives may only be used at the root of a document.)
It seems to be saying I can only use @import at the top.
Found some docs from years ago but I think theyre too old and something has changed.