Inject stylus in Shadow DOM

inject stylus to shadowRoot

Forfatter
hdyzen
Daglige installasjoner
0
Totale installasjoner
36
Vurderinger
1 0 0
Versjon
0.2
Lagd
07.02.2024
Oppdatert
12.09.2024
Lisens
MIT
Gjelder
Alle sider

Add styles of Stylus addon in shadowRoot

To apply styles within shadowRoot use the :host pseudo-class, example:

:host [selector] {
  border: 1px solid red;
}
:host * {
  border: 1px solid blue;
}