/* The package's CSS for the Workbench, built the way an application builds it: all.css (the foundation, every layout and every component stylesheet), showcase.css (the showcase's own chrome, so a real Vite build — an error page's fallback-free path, a browser-test probe page's `@vite()` — carries it too, even though the showcase's own pages take their CSS from the bundle route instead) and the Workbench's scheme, in the one CSS entry the Workbench needs. Vite's own CSS pipeline inlines the imports here and keeps a stylesheet several components import once, at its first position — the order an application gets. Opens with the same layer statement every package stylesheet does, so the `material` layers hold their place whichever file a page links first; an application needs nothing more than this. */ @layer material.reset, material.tokens, material.base, material.layout, material.components, material.text, material.visibility; @import '../../../resources/css/all.css'; @import '../../../resources/css/showcase.css'; @import './material-scheme.css';