From d6d89c3e90dc6e2fb021bdcbec34c0a863f91ad9 Mon Sep 17 00:00:00 2001 From: Ruslan Khayrullin Date: Fri, 10 Mar 2023 17:55:09 +0500 Subject: [PATCH] fix(in-405): fix squared team colors on ios --- .../MatchSidePlaylists/components/TabStats/styled.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/MatchSidePlaylists/components/TabStats/styled.tsx b/src/features/MatchSidePlaylists/components/TabStats/styled.tsx index a295bf35..a69c70c1 100644 --- a/src/features/MatchSidePlaylists/components/TabStats/styled.tsx +++ b/src/features/MatchSidePlaylists/components/TabStats/styled.tsx @@ -48,9 +48,9 @@ export const TabTitle = styled.span` left: -8px; top: 50%; translate: 0 -50%; - width: 5px; - height: 5px; - outline: ${teamColor.toUpperCase() === theme.colors.white ? 'none' : `0.5px solid ${theme.colors.white}`}; + width: 6px; + height: 6px; + border: ${teamColor.toUpperCase() === theme.colors.white ? 'none' : `0.5px solid ${theme.colors.white}`}; border-radius: 50%; background-color: ${teamColor}; }