From 2150b23735d5ea68b74961682c5734143f77a3e3 Mon Sep 17 00:00:00 2001 From: bennybrainless <242895261+bennybrainless@users.noreply.github.com> Date: Thu, 20 Nov 2025 23:14:59 -0600 Subject: [PATCH] Adjust discord notification toast styling --- discord/src/overlays/Notification.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/discord/src/overlays/Notification.tsx b/discord/src/overlays/Notification.tsx index eb2feac..c15678f 100644 --- a/discord/src/overlays/Notification.tsx +++ b/discord/src/overlays/Notification.tsx @@ -43,28 +43,21 @@ export default function NotificationOverlay({ isVisible ? 'translate-y-0 opacity-100' : 'translate-y-3 opacity-0' }`} > -
+
{notification.author.profileUrl && ( {notification.author.username} )}
-

{notification.author.username}

- {(notification.guildName || notification.channelName) && ( -

- {notification.guildName && {notification.guildName}} - {notification.guildName && notification.channelName && } - {notification.channelName && #{notification.channelName}} -

- )} -

{notification.title}

+

{notification.author.username}

+

{notification.title}

{notification.content}

+ {(notification.guildName || notification.channelName) && ( +

+ {notification.guildName ?? ''} + {notification.guildName && notification.channelName ? ' | ' : ''} + {notification.channelName ? `#${notification.channelName}` : ''} +

+ )}