launch: keep base hash on top layer

This commit is contained in:
Matilde Park 2020-10-22 20:08:57 -04:00
parent 157bf18028
commit 9f234dad63

View File

@ -77,21 +77,21 @@ export default class LaunchApp extends React.Component {
/>
</Box>
<Groups associations={props.associations} invites={props.invites} api={props.api} />
<Box
position="absolute"
fontFamily="mono"
left="0"
bottom="0"
color="gray"
bg="white"
ml={3}
mb={3}
borderRadius={2}
fontSize={0}
p={2}
>
{props.baseHash}
</Box>
</Box>
<Box
position="absolute"
fontFamily="mono"
left="0"
bottom="0"
color="gray"
bg="white"
ml={3}
mb={3}
borderRadius={2}
fontSize={0}
p={2}
>
{props.baseHash}
</Box>
</>
);