-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css.ts
50 lines (43 loc) · 1.02 KB
/
styles.css.ts
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
import { css } from "styled-components/native";
import { metrics, fonts } from "../../themes";
export const WrapperCss = css`
flex: 1;
margin: ${metrics.smallSpacing}px;
padding: ${metrics.mediumSpacing}px;
position: relative;
border-radius: 20px;
align-items: center;
justify-content: center;
background-color: white;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16);
`;
export const TitleCss = css`
margin: ${metrics.smallSpacing}px;
font-size: 16px;
line-height: 20px;
font-family: ${fonts.GothamRounded.bold};
`;
export const IconCss = css`
width: 30px;
height: 48px;
margin: 0px ${metrics.smallSpacing}px;
`;
export const MessageCss = css`
font-size: 14px;
margin: ${metrics.smallSpacing}px;
line-height: 20px;
text-align: center;
font-family: ${fonts.GothamRounded.book};
`;
export const CloseCss = css`
top: 25px;
right: 25px;
position: absolute;
`;
export const CloseIconCss = css`
width: 10px;
height: 10px;
`;
export const InfoMessageCss = css`
margin: ${metrics.smallSpacing};
`;