blob: f4d59bde298d8aaf33f727f48dd797df4a3bac0f [file] [log] [blame]
Adrià Vilanova Martínez2d9be8d2022-12-28 00:50:14 +01001// This file imports necessary web components used for several features which
2// use LitElement (and thus custom web elements). This is done by injecting this
3// javascript file instead of placing this code directly in the content script
4// because `window.customElements` doesn't exist in content scripts.
5import '../contentScripts/communityConsole/workflows/components/index.js';
6import '../contentScripts/communityConsole/threadToolbar/components/index.js';
7
8import {injectStylesheet} from '../common/contentScriptsUtils.js';
9
10// Also, we import Material Icons since the Community Console uses "Google
11// Material Icons" instead of "Material Icons". This is necessary for the MD3
12// components.
13injectStylesheet('https://fonts.googleapis.com/icon?family=Material+Icons');