fix(in-405): fix squared team colors on ios #107

Merged
andrey.dekterev merged 1 commits from in-405 into develop 3 years ago
  1. 6
      src/features/MatchSidePlaylists/components/TabStats/styled.tsx

@ -48,9 +48,9 @@ export const TabTitle = styled.span<TabTitleProps>`
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};
}

Loading…
Cancel
Save