Skip to content

Commit 9761960

Browse files
committed
fix: spacing on notification popup
1 parent 8c1d139 commit 9761960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/popups/NotificationPopup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function NotificationPopup({ buttonStyles }: NotificationPopupPro
6161
return (
6262
<div>
6363
<span onClick={externalClick}>
64-
<li className={`inline-block align-middle mr-2 relative text-gray-500 max-w-80 ${isNotificationVisible ? "z-50" : "z-10"}`} onClick={toggle}>
64+
<li className={`inline-block align-middle mr-3 relative text-gray-500 max-w-80 ${isNotificationVisible ? "z-50" : "z-10"}`} onClick={toggle}>
6565
<Button type="button" padding={false} variant="secondary" className="p-2 bg-gray-100 bg-opacity-75 hover:bg-gray-50 text-primary" customStyle={buttonStyles}>
6666
<BellIcon />
6767
{unread > 0 && <Badge value={unread} className="top-0 -right-1 absolute" />}

0 commit comments

Comments
 (0)