diff --git a/src/features/AuthServiceApp/config/clients/india.tsx b/src/features/AuthServiceApp/config/clients/india.tsx index e7e1c99e..1efd7919 100644 --- a/src/features/AuthServiceApp/config/clients/india.tsx +++ b/src/features/AuthServiceApp/config/clients/india.tsx @@ -1,9 +1,42 @@ -import { insports as platformInsports } from 'config/clients/insports' +import { css } from 'styled-components/macro' + +import { india as platformIndia } from 'config/clients/india' +import { isMobileDevice } from 'config' + +import { Background } from 'features/Background' import type { ClientConfig } from './types' -import { insports } from './insports' export const india: ClientConfig = { - ...platformInsports, - ...insports, + ...platformIndia, + 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: 85px; + width: 275px; + margin-bottom: 1.82rem; + + ${isMobileDevice ? css` + margin-bottom: 15px; + width: 165px; + height: 50px; + @media screen and (orientation: landscape){ + width: 92px; + height: 22px; + } + ` : ''} + `, + }, }