From 1a004400c43bd89aca29a68819b00d6c931e4c16 Mon Sep 17 00:00:00 2001 From: Thomas Ricouard Date: Thu, 12 Jan 2023 18:17:03 +0100 Subject: [PATCH] Notifications: UI Fix --- .../Sources/Notifications/NotificationRowView.swift | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Packages/Notifications/Sources/Notifications/NotificationRowView.swift b/Packages/Notifications/Sources/Notifications/NotificationRowView.swift index fac25ee1..5ce04c64 100644 --- a/Packages/Notifications/Sources/Notifications/NotificationRowView.swift +++ b/Packages/Notifications/Sources/Notifications/NotificationRowView.swift @@ -55,14 +55,19 @@ struct NotificationRowView: View { .append { Text(" ") + Text(type.label()) - .font(.subheadline) + + .font(.subheadline) + .fontWeight(.regular) + Text(" βΈ± ") .font(.footnote) + .fontWeight(.regular) .foregroundColor(.gray) + Text(notification.createdAt.formatted) .font(.footnote) + .fontWeight(.regular) .foregroundColor(.gray) } + .font(.subheadline) + .fontWeight(.semibold) Spacer() } }