Issue:
I'm working on implementing a react/material-ui design where I want to show an edit icon floating in the bottom right corner of a paper element. I've managed to get it to float in the bottom right of the entire screen, but that's not what I need for this particular case.
Current Situation:
https://i.sstatic.net/cEgU1.png
Desired Outcome: https://i.sstatic.net/vQC0r.png
I need the Icon Button to hover over the bottom right corner of the paper component.
<Paper classnName={classes.paper}>
<IconButton
onClick={handleVisionEditCick}
style={{ position: "???", bottom: 3, right: 3 }}
>
<EditIcon className={classes.EditIcon} />
</IconButton>
<Typography variant="h5" component="span" color="textPrimary">
{vision}
</Typography>
</Paper>