experiment(BookmarkRow): favicon 26×26 → 32×32, corner radius 5→7, align offsets to 44

This commit is contained in:
Krishna Kumar
2026-05-23 01:11:54 -05:00
parent 20f06c8440
commit baadaf77a3

View File

@@ -55,7 +55,7 @@ struct BookmarkRow: View {
.font(.system(size: 15))
.foregroundStyle(.secondary)
.lineLimit(2)
.padding(.leading, 40)
.padding(.leading, 44)
}
if !effectiveTags.isEmpty {
@@ -72,7 +72,7 @@ struct BookmarkRow: View {
}
}
}
.padding(.leading, 40)
.padding(.leading, 44)
}
// Reading progress indicator
@@ -88,7 +88,7 @@ struct BookmarkRow: View {
}
.frame(height: 2)
.clipShape(Capsule())
.padding(.leading, 40)
.padding(.leading, 44)
}
}
.padding(.vertical, 14)
@@ -125,16 +125,16 @@ struct FaviconView: View {
placeholder
}
}
.frame(width: 26, height: 26)
.clipShape(RoundedRectangle(cornerRadius: 5))
.frame(width: 32, height: 32)
.clipShape(RoundedRectangle(cornerRadius: 7))
}
private var placeholder: some View {
RoundedRectangle(cornerRadius: 4)
RoundedRectangle(cornerRadius: 6)
.fill(Color(.systemGray5))
.overlay {
Image(systemName: "bookmark")
.font(.system(size: 9, weight: .medium))
.font(.system(size: 11, weight: .medium))
.foregroundStyle(Color(.systemGray2))
}
}