diff --git a/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingCard.swift b/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingCard.swift index 979561f6..93cf3fb0 100644 --- a/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingCard.swift +++ b/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingCard.swift @@ -57,6 +57,7 @@ struct ContinueWatchingCard: View { .fontWeight(.semibold) .foregroundColor(.primary) .lineLimit(1) + .frame(width: 500, alignment: .leading) if item.itemType == .episode { Text(item.getEpisodeLocator() ?? "") @@ -64,8 +65,11 @@ struct ContinueWatchingCard: View { .fontWeight(.medium) .foregroundColor(.secondary) .lineLimit(1) + } else { + Text("") } } } + .padding(.vertical) } } diff --git a/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingView.swift b/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingView.swift index b1b80cbd..af6fc2c2 100644 --- a/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingView.swift +++ b/Swiftfin tvOS/Views/ContinueWatchingView/ContinueWatchingView.swift @@ -25,7 +25,7 @@ struct ContinueWatchingView: View { .padding(.leading, 50) ScrollView(.horizontal, showsIndicators: false) { - LazyHStack { + LazyHStack(alignment: .top) { ForEach(items, id: \.self) { item in ContinueWatchingCard(item: item) }