|
|
|
|
@ -5,6 +5,7 @@ import { isMobileDevice } from 'config/userAgent' |
|
|
|
|
|
|
|
|
|
import { Name } from 'features/Name' |
|
|
|
|
import { ProfileLogo } from 'features/ProfileLogo' |
|
|
|
|
import { Tooltip as TooltipBase } from 'features/TournamentSubtitle/styled' |
|
|
|
|
|
|
|
|
|
export const CardWrapperOuter = styled.li.attrs({ |
|
|
|
|
tabIndex: 0, |
|
|
|
|
@ -131,8 +132,8 @@ export const Info = styled.div` |
|
|
|
|
padding: 0 0.472rem 0 0.519rem; |
|
|
|
|
color: #fff; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
overflow: hidden; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
position: absolute; |
|
|
|
|
@ -202,6 +203,13 @@ export const TournamentLogo = styled(ProfileLogo)` |
|
|
|
|
max-height: 100%; |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Tooltip = styled(TooltipBase)` |
|
|
|
|
transform: translateX(-50%); |
|
|
|
|
left: 50%; |
|
|
|
|
bottom: 100%; |
|
|
|
|
top: auto; |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
type FavoriteSignProps = { |
|
|
|
|
color?: string, |
|
|
|
|
} |
|
|
|
|
|