1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

Fix body overflow issue

This commit is contained in:
checktheroads
2021-06-02 13:01:05 -07:00
parent d23e142343
commit 24a92d6154
2 changed files with 2 additions and 1 deletions

View File

@ -40,13 +40,13 @@ export const Frame: React.FC<TFrame> = (props: TFrame) => {
<Flex
px={4}
py={0}
w="100%"
as="main"
align="center"
flex="1 1 auto"
justify="start"
flexDir="column"
textAlign="center"
w={{ base: '100%', lg: 'calc(100% - 1rem)' }}
{...props}
/>
<Footer />

View File

@ -96,6 +96,7 @@ export function makeTheme(
body: {
background: mode('light.500', 'dark.500')(props),
color: mode('black', 'white')(props),
overflowX: 'hidden',
},
}),
},