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

pull/107/head
Ruslan Khayrullin 3 years ago
parent 7b3e3b521d
commit d6d89c3e90
  1. 6
      src/features/MatchSidePlaylists/components/TabStats/styled.tsx

@ -48,9 +48,9 @@ export const TabTitle = styled.span<TabTitleProps>`
left: -8px; left: -8px;
top: 50%; top: 50%;
translate: 0 -50%; translate: 0 -50%;
width: 5px; width: 6px;
height: 5px; height: 6px;
outline: ${teamColor.toUpperCase() === theme.colors.white ? 'none' : `0.5px solid ${theme.colors.white}`}; border: ${teamColor.toUpperCase() === theme.colors.white ? 'none' : `0.5px solid ${theme.colors.white}`};
border-radius: 50%; border-radius: 50%;
background-color: ${teamColor}; background-color: ${teamColor};
} }

Loading…
Cancel
Save