Fixed extra long popup

This commit is contained in:
z0ccc 2022-11-15 00:19:25 -05:00
parent e7334d8a7c
commit fe2d070426
2 changed files with 5 additions and 2 deletions

View file

@ -13,10 +13,9 @@ const Popup = () => {
return ( return (
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<Flex> <Flex sx={{ height: '100%' }}>
<Flex <Flex
sx={{ sx={{
height: '100vh',
minWidth: '36px', minWidth: '36px',
backgroundColor: 'primary', backgroundColor: 'primary',
alignItems: 'center', alignItems: 'center',

View file

@ -14,3 +14,7 @@ body {
input { input {
font-family: 'Nunito', Arial, Helvetica, sans-serif; font-family: 'Nunito', Arial, Helvetica, sans-serif;
} }
#app-container {
display: inline;
}