Skip to content

Commit fc3771c

Browse files
committed
fix(notifications): replace black body background with light gray
1 parent cf01c08 commit fc3771c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Notifications/NotificationSendHistory/NotificationDetails.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ export default function NotificationDetails({
189189
{bodyMarkdown ? (
190190
<DisplayMarkdown
191191
md={bodyMarkdown}
192-
className="whitespace-pre-wrap break-all rounded bg-black p-4 text-white"
192+
className="whitespace-pre-wrap break-all rounded bg-gray-100 p-4"
193193
/>
194194
) : slackBody ? (
195195
<DisplayMarkdown
196196
md={slackBody}
197-
className="whitespace-pre-wrap break-all rounded bg-black p-4 text-white"
197+
className="whitespace-pre-wrap break-all rounded bg-gray-100 p-4"
198198
/>
199199
) : (
200200
<div

0 commit comments

Comments
 (0)