**Describe the bug** https://unpkg.com/browse/@material/mwc-button@0.22.1/mwc-button.js I just checking the `@material/mwc-button` and it has this CSS import line: ```javascript import { styles } from './styles.css'; ``` But the browser can't load this `.css` file (at least without server magic). **Expected behavior** Use code that the browser understand. Maybe as `.css.js`? ```javascript import { styles } from './styles.css.js'; ```