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.
20 lines
433 B
20 lines
433 B
import { css } from 'styled-components'
|
|
|
|
import { instat as platformInstat } from 'config/clients/instat'
|
|
|
|
import { Background } from 'features/Background'
|
|
|
|
import type { ClientConfig } from './types'
|
|
|
|
export const instat: ClientConfig = {
|
|
...platformInstat,
|
|
background: Background,
|
|
name: 'instat',
|
|
styles: {
|
|
logo: css`
|
|
background-image: url(/images/logo.svg);
|
|
height: 54px;
|
|
width: 234px;
|
|
`,
|
|
},
|
|
}
|
|
|