diff --git a/Mastodon/Scene/Search/CollectionViewCell/SearchRecommendTagsCollectionViewCell.swift b/Mastodon/Scene/Search/CollectionViewCell/SearchRecommendTagsCollectionViewCell.swift index 002929510..3048037c8 100644 --- a/Mastodon/Scene/Search/CollectionViewCell/SearchRecommendTagsCollectionViewCell.swift +++ b/Mastodon/Scene/Search/CollectionViewCell/SearchRecommendTagsCollectionViewCell.swift @@ -51,6 +51,12 @@ class SearchRecommendTagsCollectionViewCell: UICollectionViewCell { super.init(coder: coder) configure() } + + override var isHighlighted: Bool { + didSet { + backgroundColor = isHighlighted ? Asset.Colors.brandBlueDarken20.color : Asset.Colors.brandBlue.color + } + } } extension SearchRecommendTagsCollectionViewCell {