style(#2837): fix style facr for main page and useraccount page

keep-around/2fd168b18eeebc91eac94ae86d817c12edfe1576
Andrei Dekterev 3 years ago
parent 09bda05e93
commit 829a30498e
  1. 105
      public/images/facr-logo.svg
  2. 16
      src/config/clients/facr.tsx
  3. 3
      src/features/MatchPage/index.tsx
  4. 2
      src/features/UserAccount/styled.tsx

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 46 KiB

@ -38,14 +38,14 @@ export const facr: ClientConfig = {
homePageHeader: css`
background: linear-gradient(83.42deg, #00257A 53.04%, rgba(0, 0, 0, 0) 94.83%), #000000;
`,
logo: 'facr_auth_logo.png',
logoHeight: 4.76,
logoLeft: 1.17,
logo: 'facr-logo.svg',
logoHeight: 6.3,
logoLeft: 1.1,
logoTop: 1.74,
logoWidth: 6.22,
matchLogoHeight: 2.6,
logoWidth: 8.25,
matchLogoHeight: 3.4,
matchLogoTopMargin: 0.9,
matchLogoWidth: 3.4,
matchLogoWidth: 4.5,
matchPageMobileHeaderLogo: css`
width: 35px;
height: 25px;
@ -56,8 +56,8 @@ export const facr: ClientConfig = {
height: 37px;
`,
userAccountLogo: css`
width: 6.22rem;
height: 4.76rem;
width: 4.56rem;
height: 3.488rem;
`,
},
termsLink: '/terms-and-conditions?client_id=facr-ott-web',

@ -12,6 +12,7 @@ import {
import { FavoritesActions } from 'requests'
import { ProfileTypes } from 'config'
import { client } from 'config/clients'
import { usePageLogger } from 'hooks/usePageLogger'
import { usePageParams } from 'hooks/usePageParams'
@ -65,7 +66,7 @@ const MatchPageComponent = () => {
}
return (
<PageWrapper>
<ProfileHeader color='#2B2A28' height={4.5} />
<ProfileHeader color='#2B2A28' height={client.name === 'facr' ? 5 : 4.5} />
<Main>
<UserFavorites />
<SubscriptionGuard>

@ -111,7 +111,7 @@ export const UserAccountWrapper = styled.div`
height: 100vh;
display: flex;
flex-direction: column;
padding: 32px 30px 60px 36px;
padding: 20px 25px 60px 36px;
position: relative;
${isMobileDevice
? css`

Loading…
Cancel
Save