Skip to content

Commit

Permalink
Increase size of approver icon-button and tooltip text
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksTeresh committed Oct 17, 2024
1 parent b9303dd commit bea71af
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/client/components/ProgramManagement/ProgramManagement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ const ProgramManagement = () => {
sortable: false,
renderCell: (params) => (
<Tooltip
arrow
PopperProps={{
sx: {
'& .MuiTooltip-tooltip': {
fontSize: '0.9rem',
},
},
}}
title={
params.row.isThesisApprover
? t('programManagementPage:disallowThesisApprovalButton')
Expand All @@ -104,9 +112,9 @@ const ProgramManagement = () => {
data-testid={`toggle-thesis-approver-button-${params.row.userId}`}
>
{params.row.isThesisApprover ? (
<HowToRegIcon fontSize="small" />
<HowToRegIcon fontSize="large" />
) : (
<HowToRegOutlinedIcon fontSize="small" />
<HowToRegOutlinedIcon fontSize="large" />
)}
</IconButton>
</Tooltip>
Expand Down

0 comments on commit bea71af

Please sign in to comment.