Ott 319 team logo size (#115)

keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
Mirlan 5 years ago committed by GitHub
parent 26f234df2d
commit 07425bb487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/features/MatchCard/CardSoon/index.tsx
  2. 3
      src/features/Matches/hooks.tsx
  3. 2
      src/requests/getMatches.tsx

@ -35,7 +35,11 @@ const TeamLogos = styled.div`
`
const TeamLogo = styled.img`
width: 70px;
width: 60px;
:last-child {
margin-left: 8px;
}
`
const TeamName = styled(CommonTeamName)`

@ -10,6 +10,7 @@ import type { Matches, Content } from 'requests'
import { ProfileTypes } from 'config'
import { getProfileLogo, getSportLexic } from 'helpers'
import { useLexicsStore } from 'features/LexicsStore'
import { MatchStatuses } from 'features/HeaderFilters'
export type Props = {
matches: Matches,
@ -23,7 +24,7 @@ export type Match = {
preview: string,
sportName: string,
sportType: number,
streamStatus: number,
streamStatus: MatchStatuses,
team1Logo: string,
team1Name: string,
team1Score: number,

@ -37,7 +37,7 @@ export type Match = {
date: string,
id: number,
round_id: number | null,
stream_status: number,
stream_status: MatchStatuses,
team1: Team,
team2: Team,
}

Loading…
Cancel
Save