@waggylabs/yumekit 0.4.2-beta.28 → 0.4.2-beta.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/y-theme.js +1 -0
- package/dist/index.js +1 -0
- package/dist/yumekit.min.js +1 -1
- package/llm.txt +45 -5
- package/package.json +1 -1
|
@@ -167,6 +167,7 @@ class YumeTheme extends HTMLElement {
|
|
|
167
167
|
font-family: var(--font-family-body, sans-serif);
|
|
168
168
|
color: var(--base-content--, inherit);
|
|
169
169
|
font-weight: var(--font-weight-body, 400);
|
|
170
|
+
background: var(--base-background-app, transparent);
|
|
170
171
|
}`;
|
|
171
172
|
this.shadowRoot.appendChild(baseStyle);
|
|
172
173
|
|
package/dist/index.js
CHANGED
|
@@ -11580,6 +11580,7 @@ class YumeTheme extends HTMLElement {
|
|
|
11580
11580
|
font-family: var(--font-family-body, sans-serif);
|
|
11581
11581
|
color: var(--base-content--, inherit);
|
|
11582
11582
|
font-weight: var(--font-weight-body, 400);
|
|
11583
|
+
background: var(--base-background-app, transparent);
|
|
11583
11584
|
}`;
|
|
11584
11585
|
this.shadowRoot.appendChild(baseStyle);
|
|
11585
11586
|
|