8 lines
190 B
SCSS
8 lines
190 B
SCSS
@use '@graphiteds/core/css/core.css';
|
|
|
|
:host {
|
|
// The graphite css (above) loads variables into :root, which is lost in the
|
|
// shadow DOM, so copy them into the host.
|
|
@extend :root;
|
|
}
|