File size: 1,160 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// @flow
import styled from 'styled-components';
import theme from 'shared/theme';
import { PrimaryButton, TextButton } from 'src/components/button';
import { MEDIA_BREAK } from 'src/components/layout';

export const ContinueButton = styled(PrimaryButton)`
  font-size: 17px;
  font-weight: 600;
  padding: 12px 16px;
  flex: 1;
  max-width: 100%;
  margin: 16px auto 64px;
`;

export const LogOutButton = styled(TextButton)`
  flex: 1;
  color: ${theme.text.alt};
`;
export const Emoji = styled.span`
  font-size: 40px;
  margin-bottom: 16px;
`;

export const Heading = styled.h3`
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: ${theme.text.default};
`;

export const Description = styled.p`
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: ${theme.text.secondary};
  padding-right: 24px;
`;

export const Card = styled.div`
  background: ${theme.bg.wash};
  padding: 16px;
  text-align: center;
  max-width: 480px;
  justify-self: center;

  @media (max-width: ${MEDIA_BREAK}px) {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid ${theme.bg.border};
  }
`;