parent
06fcc4f011
commit
3668fc336d
|
After Width: | Height: | Size: 7.8 KiB |
@ -0,0 +1,46 @@ |
|||||||
|
import { css } from 'styled-components/macro' |
||||||
|
import { |
||||||
|
ClientConfig, |
||||||
|
ClientIds, |
||||||
|
ClientNames, |
||||||
|
} from './types' |
||||||
|
|
||||||
|
export const insports: ClientConfig = { |
||||||
|
auth: { |
||||||
|
clientId: ClientIds.Insports, |
||||||
|
}, |
||||||
|
defaultLanguage: 'en', |
||||||
|
description: 'Live sports streaming platform. Football, basketball, ice hockey and more. Access to various player playlists and game highlights. Multiple subscription options. Available across all devices.', |
||||||
|
disabledPreferences: true, |
||||||
|
name: ClientNames.Insports, |
||||||
|
privacyLink: '/privacy-policy-and-statement', |
||||||
|
showSearch: true, |
||||||
|
styles: { |
||||||
|
background: 'background-image: url(/images/Checker.png);', |
||||||
|
logo: 'insports-logo.svg', |
||||||
|
logoHeight: 1.465, |
||||||
|
logoLeft: 1.7, |
||||||
|
logoTop: 1.5, |
||||||
|
logoWidth: 6.37, |
||||||
|
matchLogoHeight: 1.465, |
||||||
|
matchLogoWidth: 6.37, |
||||||
|
matchPageMobileHeaderLogo: css` |
||||||
|
width: 65px; |
||||||
|
height: 15px; |
||||||
|
`,
|
||||||
|
mobileHeaderLogo: css` |
||||||
|
width: 84px; |
||||||
|
height: 20px; |
||||||
|
@media screen and (orientation: landscape){ |
||||||
|
width: 92px; |
||||||
|
height: 22px; |
||||||
|
} |
||||||
|
`,
|
||||||
|
userAccountLogo: css` |
||||||
|
width: 6.37rem; |
||||||
|
height: 1.465rem; |
||||||
|
`,
|
||||||
|
}, |
||||||
|
termsLink: '/terms-and-conditions', |
||||||
|
title: 'InSports TV - The Home of Sports Streaming', |
||||||
|
} |
||||||
@ -0,0 +1,42 @@ |
|||||||
|
import { css } from 'styled-components' |
||||||
|
|
||||||
|
import { insports as platformInsports } from 'config/clients/insports' |
||||||
|
import { isMobileDevice } from 'config/userAgent' |
||||||
|
|
||||||
|
import { Background } from 'features/Background' |
||||||
|
|
||||||
|
import type { ClientConfig } from './types' |
||||||
|
|
||||||
|
export const insports: ClientConfig = { |
||||||
|
...platformInsports, |
||||||
|
background: Background, |
||||||
|
styles: { |
||||||
|
centerBlock: css` |
||||||
|
margin-top: 9.15rem; |
||||||
|
${isMobileDevice ? css` |
||||||
|
margin-top: 107px; |
||||||
|
@media screen and (orientation: landscape) { |
||||||
|
width: 290px; |
||||||
|
margin: auto; |
||||||
|
} |
||||||
|
` : ''};
|
||||||
|
`,
|
||||||
|
logo: css` |
||||||
|
background-image: url(/images/insports-logo.svg); |
||||||
|
background-position: center; |
||||||
|
height: 71px; |
||||||
|
width: 234px; |
||||||
|
margin-bottom: 1.82rem; |
||||||
|
|
||||||
|
${isMobileDevice ? css` |
||||||
|
margin-bottom: 15px; |
||||||
|
width: 145px; |
||||||
|
height: 45px; |
||||||
|
@media screen and (orientation: landscape){ |
||||||
|
width: 92px; |
||||||
|
height: 22px; |
||||||
|
} |
||||||
|
` : ''}
|
||||||
|
`,
|
||||||
|
}, |
||||||
|
} |
||||||
Loading…
Reference in new issue