Made alert icon slightly smaller in release_notes.tsx

This commit is contained in:
Michael Arestad 2022-08-04 08:26:02 -06:00
parent c1b108e3a5
commit 9694d53754

View File

@ -44,8 +44,8 @@ const AlertIcon = styled(((props) => <Icons icon="alert" {...props} />) as FC<
Omit<ComponentProps<typeof Icons>, 'icon'>
>)(({ theme }) => ({
color: theme.color.mediumdark,
width: 40,
height: 40,
width: 32,
height: 32,
margin: '0 auto',
}));