You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
import { css } from 'styled-components/macro'
|
|
import {
|
|
ClientConfig,
|
|
ClientIds,
|
|
ClientNames,
|
|
} from './types'
|
|
|
|
export const lff: ClientConfig = {
|
|
auth: {
|
|
clientId: ClientIds.Lff,
|
|
},
|
|
currencyBadge: {
|
|
color: '#333333',
|
|
secondColor: 'rgba(255, 255, 255, 0.7)',
|
|
sign: 'Dollar',
|
|
},
|
|
defaultLanguage: 'lv',
|
|
description: 'Latvijas Futbola federācija (LFF) pašmāju futbola spēļu tiešraižu, apskatu un ierakstu platforma.',
|
|
disabledHighlights: true,
|
|
disabledPreferences: true,
|
|
host: 'tv.lff.lv',
|
|
name: ClientNames.Lff,
|
|
privacyLink: '/privacy-policy-and-statement',
|
|
showSearch: true,
|
|
styles: {
|
|
background: 'background-image: url(/images/Checker.png);',
|
|
homePageHeader: css`
|
|
background: linear-gradient(38.47deg, #242321 26.08%, #DB1C49 95.99%), #000000;
|
|
`,
|
|
logo: 'lff_auth_logo.svg',
|
|
logoHeight: 6,
|
|
logoLeft: 1.2,
|
|
logoTop: 1.2,
|
|
logoWidth: 6,
|
|
matchLogoHeight: 2.5,
|
|
matchLogoWidth: 2.5,
|
|
matchPageMobileHeaderLogo: css`
|
|
width: 24px;
|
|
height: 24px;
|
|
top: 0;
|
|
`,
|
|
mobileHeaderLogo: css`
|
|
width: 42px;
|
|
height: 42px;
|
|
`,
|
|
userAccountLogo: css`
|
|
width: 80px;
|
|
height: 80px;
|
|
`,
|
|
},
|
|
termsLink: '/terms-and-conditions?client_id=lff-ott-web',
|
|
title: 'Latvijas Futbola federācija',
|
|
userAccountLinksDisabled: true,
|
|
}
|
|
|