Greasy Fork is available in English.

Inject stylus in Shadow DOM

inject stylus to shadowRoot

Autor
hdyzen
Installationen heute
0
Installationen gesamt
40
Bewertungen
1 0 0
Version
0.2
Erstellt am
07.02.2024
Letzte Aktualisierung
12.09.2024
Size
3,5 KB
Lizenz
MIT
Wird angewandt auf
Alle Seiten

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;
}