options button styles change

master
Tudor Stanciu 2021-05-15 02:31:38 +03:00
parent ac960db9e1
commit a8825a69d6
2 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,11 @@ const styles = () => ({
}, },
narrowTable: { narrowTable: {
minWidth: 400 minWidth: 400
},
rowButton: {
width: 20,
height: 20,
padding: 10
} }
}); });

View File

@ -86,11 +86,14 @@ const SessionForwardsComponent = ({
{row.optionId ? ( {row.optionId ? (
<Tooltip title={t("Session.Forwards.Options.Title")}> <Tooltip title={t("Session.Forwards.Options.Title")}>
<IconButton <IconButton
className={classes.rowButton}
aria-label="options" aria-label="options"
size="small"
onClick={openOptionsDialog(row)} onClick={openOptionsDialog(row)}
> >
<DonutLargeRoundedIcon color="primary" /> <DonutLargeRoundedIcon
color="primary"
fontSize="small"
/>
</IconButton> </IconButton>
</Tooltip> </Tooltip>
) : ( ) : (