File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 39
39
no visible effect.
40
40
-->
41
41
< style type ="text/css ">
42
- [data-testid = " tanstack_devtools" ] * {
42
+ [data-testid = ' tanstack_devtools' ] * {
43
43
color : red !important ;
44
44
}
45
45
</ style >
Original file line number Diff line number Diff line change @@ -188,15 +188,15 @@ export default function DevTools() {
188
188
} )
189
189
const { theme } = useTheme ( )
190
190
191
- const [ gooberCss , setGooberCss ] = createSignal ( "" ) ;
191
+ const [ gooberCss , setGooberCss ] = createSignal ( '' )
192
192
createEffect ( ( ) => {
193
193
// Setup mutation observer for goober styles with id `_goober
194
194
const gooberStyles = document . querySelector ( '#_goober' )
195
195
if ( gooberStyles ) {
196
196
setGooberCss ( gooberStyles . textContent )
197
197
const observer = new MutationObserver ( ( ) => {
198
198
setGooberCss ( gooberStyles . textContent )
199
- } )
199
+ } )
200
200
observer . observe ( gooberStyles , {
201
201
childList : true , // observe direct children
202
202
subtree : true , // and lower descendants too
You can’t perform that action at this time.
0 commit comments