I am using selecttreejs npm module and I am trying to import its css style in my polymer3 application, it seems like its not loading completly.
It looks like this, overlapping with background text. How can I import the external css to polymer 3 app.

import { Treeselect } from 'treeselectjs'; import treeselect from "treeselectjs/dist/treeselect-js.css"; let myCSSLiteral = htmlLiteral(treeselect); class WorkspaceSelector extends PolymerElement { static get template() { return html ` <style> ${myCSSLiteral} #workspace-select { width: 100%; } .sciome-select { font: 400 16px "acumin-variable-concept"; padding: 5px; } </style>
You should just be able to use the standard
linktag in your html code.