We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba34fb commit 0268080Copy full SHA for 0268080
DesignSystem/Sources/DesignSystem/Components/PostDisplayView.swift
@@ -51,7 +51,7 @@ public struct PostDisplayView: View {
51
52
public var body: some View {
53
VStack(alignment: .leading, spacing: 0) {
54
- HStack(alignment: .top, spacing: 12) {
+ HStack(alignment: .center, spacing: 12) {
55
// Thumbnail with proper loading
56
ThumbnailView(url: post.url, isEnabled: showThumbnails)
57
.frame(width: 55, height: 55)
@@ -67,7 +67,7 @@ public struct PostDisplayView: View {
67
if let host = post.url.host,
68
!isHackerNewsItemURL(post.url)
69
{
70
- Text(truncatedHost(host))
+ Text(truncatedHost(host).uppercased())
71
.scaledFont(.caption)
72
.foregroundColor(.secondary)
73
.lineLimit(1)
0 commit comments