I don't know if that would help anyone but I had similar problem when using react-output-target. It just doesn't export the global css file. What I did was to import the styles in the entry point of my react-output-app and then export with
export * from './components/stencil-generated/components';
as per the documentation
That way it gets imported in the consuming app.