css: target both :root and :host to also cover usage in shadow DOM

Inside shadow DOM :root can't be targeted, so :host should be used here for those cases.

Solves issues #517
This commit is contained in:
Jeroen Van den Berghe 2023-10-17 13:26:41 +02:00
parent 99b7757a3a
commit 7005ced0b5

View file

@ -5,7 +5,8 @@
*
*/
:root {
:root,
:host {
--d2h-bg-color: #fff;
--d2h-border-color: #ddd;