You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The <iframe> that the child app lives in has its height set to 100% which causes the "Tool Name (1)" header to push it offscreen, which is annoying when developing a plugin that normally extends beyond the vertical space. Could be fixed by using flex to fill the remaining space.
<Gridcontainerdirection="column"itemxs="auto"className={...}><Boxm={4}><GridcontaineralignItems="center"><Griditemxs><Typographyvariant="overline">Tool Name (1)</Typography></Grid><Griditem><IconButtononClick={this.toggleToolDrawer}>...</IconButton></Grid></Grid></Box><Divider/><Griditemxs><iframestyle={{border: 0,height: '100%',width: '100%'}}{...}/></Grid></Grid>
The text was updated successfully, but these errors were encountered:
The
<iframe>
that the child app lives in has its height set to100%
which causes the "Tool Name (1)" header to push it offscreen, which is annoying when developing a plugin that normally extends beyond the vertical space. Could be fixed by using flex to fill the remaining space.The text was updated successfully, but these errors were encountered: