We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6e266 commit cc8c81bCopy full SHA for cc8c81b
2 files changed
.changeset/router-plugin-scroll.md
@@ -0,0 +1,5 @@
1
+---
2
+'@tanstack/devtools': patch
3
4
+
5
+Allow direct-mounted plugin panels to inherit full height for embedded scrolling.
packages/devtools/src/styles/use-styles.ts
@@ -664,10 +664,20 @@ const stylesFactory = (theme: DevtoolsStore['settings']['theme']) => {
664
pluginsTabContent: css`
665
width: 100%;
666
height: 100%;
667
+ min-width: 0;
668
+ min-height: 0;
669
670
+ & > * {
671
672
673
+ width: 100%;
674
+ height: 100%;
675
+ }
676
677
& > * > * {
678
min-width: 0;
679
min-height: 0;
680
681
682
}
683
0 commit comments