From 7534c7853e45ae3c6e7e0db2d52ed897bbe89adb Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 26 Sep 2023 10:19:31 -0400 Subject: [PATCH] Further widget appearance tweaks --- Widgets/Recents.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Widgets/Recents.swift b/Widgets/Recents.swift index c544504..793f6d4 100644 --- a/Widgets/Recents.swift +++ b/Widgets/Recents.swift @@ -168,8 +168,10 @@ struct ItemListEntryView: View { .foregroundColor(.red) Spacer() if let published = item.published { - Text(published, format: .relative(presentation: .numeric, unitsStyle: .narrow)) - .font(.caption) + Text(published, style: .relative) + .font(.caption.width(.condensed)) + .multilineTextAlignment(.trailing) + .layoutPriority(-1) } } Text(verbatim: item.title ?? "")