Increase grid spacing on tvOS for focus effect clearance

The tvOS focus effect scales up the focused card, causing it to overlap
adjacent cards' text. Increase grid spacing from 32 to 48 points.
This commit is contained in:
Arkadiusz Fal
2026-04-13 21:45:28 +02:00
parent 84db5d0c42
commit debfdef26f

View File

@@ -43,7 +43,7 @@ enum GridConstants {
/// Spacing between grid items. /// Spacing between grid items.
static let spacing: CGFloat = { static let spacing: CGFloat = {
#if os(tvOS) #if os(tvOS)
32 48
#else #else
12 12
#endif #endif