diff --git a/Shared/Constants.swift b/Shared/Constants.swift index cd3fb309..2ab38358 100644 --- a/Shared/Constants.swift +++ b/Shared/Constants.swift @@ -20,6 +20,14 @@ struct Constants { #endif } + static var recentsChannelThumbnailSize: Double { + #if os(macOS) + 20 + #else + 30 + #endif + } + static var channelDetailsStackSpacing: Double { #if os(tvOS) 12 diff --git a/Shared/Navigation/AppSidebarRecents.swift b/Shared/Navigation/AppSidebarRecents.swift index 79287492..8455d871 100644 --- a/Shared/Navigation/AppSidebarRecents.swift +++ b/Shared/Navigation/AppSidebarRecents.swift @@ -75,7 +75,7 @@ struct RecentNavigationLink: View { channel.thumbnailURLOrCached != nil { ChannelAvatarView(channel: channel, subscribedBadge: false) - .frame(width: 20, height: 20) + .frame(width: Constants.recentsChannelThumbnailSize, height: Constants.recentsChannelThumbnailSize) Text(channel.name) } else {