fix(#2843): fixed tournament name size

keep-around/2fd168b18eeebc91eac94ae86d817c12edfe1576
Rakov Roman 3 years ago
parent 38fb947747
commit c9a22b523c
  1. 7
      src/features/TournamentList/components/CollapseTournament/styled.tsx

@ -156,7 +156,7 @@ export const SecondaryInfo = styled.div`
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 2rem; min-height: 2rem;
` `
export const CountryFlag = styled.img` export const CountryFlag = styled.img`
@ -188,11 +188,14 @@ export const TournamentName = styled(Name)`
max-height: 100%; max-height: 100%;
font-weight: 600; font-weight: 600;
font-size: 13px; font-size: 13px;
line-height: 18px;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
overflow: hidden; overflow: hidden;
white-space: initial; white-space: initial;
@media ${devices.laptop} {
font-size: 10px;
}
` `
export const TournamentLogo = styled(ProfileLogo)` export const TournamentLogo = styled(ProfileLogo)`

Loading…
Cancel
Save