We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a16c9ac commit bef524eCopy full SHA for bef524e
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementProductTable.tsx
@@ -144,15 +144,27 @@ const ReimbursementProductTable: React.FC<ReimbursementProductTableProps> = ({
144
{errors.reimbursementProducts?.[product.index]?.cost?.message}
145
</FormHelperText>
146
</FormControl>
147
- <IconButton onClick={() => removeProduct(product.index)}>
+ <IconButton
148
+ sx={{
149
+ '&:focus': {
150
+ backgroundColor: '#f5f5f5'
151
+ }
152
+ }}
153
+ onClick={() => removeProduct(product.index)}
154
+ >
155
<Delete />
156
</IconButton>
157
</Box>
158
</ListItem>
159
))}
160
161
<Button
- sx={{ margin: '4px' }}
162
163
+ margin: '4px',
164
165
+ backgroundColor: '#fdf8f8'
166
167
168
startIcon={<Add />}
169
onClick={() =>
170
appendProduct({
0 commit comments