|
@@ -33,7 +33,7 @@ const AlertMessage = ({alert, system}: Props) => {
|
|
|
{url ? <ExternalLink href={url}>{message}</ExternalLink> : message}
|
|
|
</StyledMessage>
|
|
|
<StyledCloseButton
|
|
|
- icon={<IconClose size="md" isCircled />}
|
|
|
+ icon={<IconClose size="sm" />}
|
|
|
aria-label={t('Close')}
|
|
|
onClick={alert.onClose ?? handleClose}
|
|
|
size="zero"
|
|
@@ -57,7 +57,6 @@ const StyledMessage = styled('span')`
|
|
|
|
|
|
const StyledCloseButton = styled(Button)`
|
|
|
background-color: transparent;
|
|
|
- opacity: 0.4;
|
|
|
transition: opacity 0.1s linear;
|
|
|
position: absolute;
|
|
|
top: 50%;
|