Skip to content

Commit 6e4aa2e

Browse files
Fix page flow (#36)
Fixes the following: https://github.com/user-attachments/assets/7282d978-d034-4d73-872d-f83a7bd0378d This was a regression from #29
1 parent c46b8a4 commit 6e4aa2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/react-devtools/src/devtools.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export const TanstackDevtools = ({
153153

154154
return (
155155
<>
156-
<div style={{ height: '100%' }} ref={devToolRef} />
156+
<div style={{ position: 'absolute' }} ref={devToolRef} />
157157
{pluginContainer && PluginComponent
158158
? createPortal(<>{PluginComponent}</>, pluginContainer)
159159
: null}

packages/solid-devtools/src/core.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ export default function SolidDevtoolsCore({
126126
})
127127
}
128128
})
129-
return <div style={{ height: '100%' }} ref={devToolRef} />
129+
return <div style={{ position: 'absolute' }} ref={devToolRef} />
130130
}

0 commit comments

Comments
 (0)