yt-chat-components 1.1.3 → 1.1.5
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/package.json
CHANGED
|
@@ -1828,8 +1828,8 @@ input::-ms-input-placeholder { /* Microsoft Edge */
|
|
|
1828
1828
|
overflow: auto;
|
|
1829
1829
|
font-size: 85%;
|
|
1830
1830
|
line-height: 1.45;
|
|
1831
|
-
color: #000000;
|
|
1832
|
-
background-color: #ffffff;
|
|
1831
|
+
color: #000000 !important;
|
|
1832
|
+
background-color: #ffffff !important;
|
|
1833
1833
|
<!-- color: var(--fgColor-default);-->
|
|
1834
1834
|
<!-- background-color: var(--bgColor-muted);-->
|
|
1835
1835
|
border-radius: 6px;
|
package/src/chatWidget/index.tsx
CHANGED
|
@@ -1792,8 +1792,10 @@ input::-ms-input-placeholder { /* Microsoft Edge */
|
|
|
1792
1792
|
overflow: auto;
|
|
1793
1793
|
font-size: 85%;
|
|
1794
1794
|
line-height: 1.45;
|
|
1795
|
-
color:
|
|
1796
|
-
background-color:
|
|
1795
|
+
color: #000000 !important;
|
|
1796
|
+
background-color: #ffffff !important;
|
|
1797
|
+
<!-- color: var(--fgColor-default);-->
|
|
1798
|
+
<!-- background-color: var(--bgColor-muted);-->
|
|
1797
1799
|
border-radius: 6px;
|
|
1798
1800
|
}
|
|
1799
1801
|
|