In my package I am using a third party framework, with some custom CSS from the author. My less looks like
div.my-package-class::shadow {
@import (inline, css) "./thirdparty.css";
}
If I copy any paste the CSS file into my LESS, the styles are applied, but not when I import from another file. What am I doing wrong?