diff options
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r-- | src/view/shell/web/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx index b9ae32f27..ae1a526a0 100644 --- a/src/view/shell/web/index.tsx +++ b/src/view/shell/web/index.tsx @@ -52,7 +52,7 @@ export const WebShell: React.FC = observer(() => { {screenRenderDesc.screens.map(({Com, navIdx, params, key, current}) => ( <View key={key} - style={[s.h100pct, current ? styles.visible : styles.hidden]}> + style={[s.hContentRegion, current ? styles.visible : styles.hidden]}> <ErrorBoundary> <Com params={params} navIdx={navIdx} visible={current} /> </ErrorBoundary> |