Notifications: use flex-none on icons

This commit is contained in:
Alex Gleason
2022-04-21 18:30:54 -05:00
parent 9e50f76d78
commit 5580e5c860

View File

@ -197,14 +197,14 @@ const Notification: React.FC<INotificaton> = (props) => {
return (
<Emoji
emoji={notification.emoji}
className='w-4 h-4'
className='w-4 h-4 flex-none'
/>
);
} else if (type) {
return (
<Icon
src={icons[type]}
className='text-primary-600'
className='text-primary-600 flex-none'
/>
);
} else {