about summary refs log tree commit diff
path: root/src/view/shell/web/index.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-02-24 10:10:21 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-02-24 10:10:21 -0600
commitfa115c1cba0a4d0ab453961ee02fd9702c2517be (patch)
tree46375646e611d207a6b64bab303912e853360123 /src/view/shell/web/index.tsx
parent3e197286188f2d5220afc23d010542af25457883 (diff)
downloadvoidsky-fa115c1cba0a4d0ab453961ee02fd9702c2517be.tar.zst
Fix region sizing on web
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r--src/view/shell/web/index.tsx2
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>