File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ const LayoutWrapper = ({ children }) => {
124
124
asPath . startsWith ( '/404' ) ||
125
125
asPath . startsWith ( '/500' )
126
126
) {
127
- return < > { children } </ > ;
127
+ return < Inline height = "100vh" > { children } </ Inline > ;
128
128
}
129
129
130
130
return (
Original file line number Diff line number Diff line change @@ -304,13 +304,17 @@ const Index = () => {
304
304
return (
305
305
< Stack
306
306
width = "100%"
307
+ height = "100vh"
308
+ display = "flex"
309
+ flexDirection = "column"
307
310
alignItems = "center"
308
311
spacing = { 6 }
309
312
backgroundColor = { getValueForPage ( 'backgroundColor' ) }
310
313
>
311
314
< Stack
312
315
width = "100%"
313
- height = { isSmallView ? 'auto' : isXLargeView ? 900 : 800 }
316
+ height = { isSmallView ? 'auto' : isXLargeView ? '100vh' : 800 }
317
+ flexShrink = { 0 }
314
318
>
315
319
< Inline
316
320
width = "100%"
You can’t perform that action at this time.
0 commit comments