From 5bc718880914fb6407004e93421ea11a0f954441 Mon Sep 17 00:00:00 2001 From: Mirlan Date: Wed, 25 Aug 2021 14:55:04 +0600 Subject: [PATCH] fix(1450): changed dash (#438) --- .../MatchPage/components/MatchProfileCard/index.tsx | 3 +-- .../MatchPage/components/MatchProfileCard/styled.tsx | 8 -------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/features/MatchPage/components/MatchProfileCard/index.tsx b/src/features/MatchPage/components/MatchProfileCard/index.tsx index c114c6bb..781994fd 100644 --- a/src/features/MatchPage/components/MatchProfileCard/index.tsx +++ b/src/features/MatchPage/components/MatchProfileCard/index.tsx @@ -11,7 +11,6 @@ import { Wrapper, Team, Score, - Dash, StyledLink, ScoreWrapper, Logo, @@ -51,7 +50,7 @@ export const MatchProfileCard = ({ profile }: Props) => { { isScoreHidden - ? + ? '-' : ( {team1.score} - {team2.score} diff --git a/src/features/MatchPage/components/MatchProfileCard/styled.tsx b/src/features/MatchPage/components/MatchProfileCard/styled.tsx index a4b3275d..9a313def 100644 --- a/src/features/MatchPage/components/MatchProfileCard/styled.tsx +++ b/src/features/MatchPage/components/MatchProfileCard/styled.tsx @@ -47,14 +47,6 @@ export const StyledLink = styled(ProfileLink)` } ` -export const Dash = styled.span` - display: inline-block; - margin-top: 5px; - width: 30px; - height: 3px; - background-color: white; -` - export const ScoreWrapper = styled.div` margin: 0 10px; `