hark: prevent long list overflowing

This commit is contained in:
Matilde Park 2020-11-11 19:22:58 -05:00
parent 2404d70bee
commit 5c8337e878
2 changed files with 2 additions and 4 deletions

View File

@ -86,11 +86,9 @@ const acceptInvite = (invite) => {
};
return (
<Col overflowY="auto" flexGrow="1">
<Col flexGrow='1' minHeight='0'>
{incomingGroups.map((invite) => (
<Box
height='100%'
width='100%'
bg='white'
p='3'
fontSize='0'>

View File

@ -53,7 +53,7 @@ export default function NotificationsScreen(props: any) {
const { view } = routeProps.match.params;
return (
<Body>
<Col height="100%">
<Col height="100%" minHeight='0' overflowY='scroll'>
<Row
p="3"
alignItems="center"