Change "large" IconButtons to default size

This commit is contained in:
schroda
2025-03-28 19:05:21 +01:00
parent 99f14e2f27
commit e3934545b0
14 changed files with 11 additions and 31 deletions

View File

@@ -73,13 +73,7 @@ export function LangSelect(props: IProps) {
return (
<>
<CustomTooltip title={t('settings.title')}>
<IconButton
onClick={() => setOpen(true)}
aria-label="display more actions"
edge="end"
color="inherit"
size="large"
>
<IconButton onClick={() => setOpen(true)} aria-label="display more actions" edge="end" color="inherit">
<FilterListIcon />
</IconButton>
</CustomTooltip>

View File

@@ -50,7 +50,7 @@ const MutableListItem = ({
</ListItem>
)}
<CustomTooltip title={t('chapter.action.download.delete.label.action')} disabled={!deletable}>
<IconButton disabled={!deletable} size="large" onClick={handleDelete}>
<IconButton disabled={!deletable} onClick={handleDelete}>
<DeleteIcon />
</IconButton>
</CustomTooltip>