-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.tsx
More file actions
91 lines (79 loc) · 1.76 KB
/
styles.tsx
File metadata and controls
91 lines (79 loc) · 1.76 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import { styled } from 'styled-components';
export const ProfileEditContainer = styled.div`
max-width: 32rem;
display: flex;
flex-direction: column;
position: relative;
`;
export const Section = styled.div`
margin-top: 1.875rem;
margin-bottom: 1.875rem;
width: 100%;
padding: 0rem 1.875rem;
`;
export const SectionTitle = styled.div`
font-size: 1.125rem;
font-weight: bold;
margin-bottom: 0.625rem;
margin-top: 1.125rem;
text-align: left;
`;
export const SNSInfo = styled.div`
display: flex;
flex-direction: column;
margin-bottom: 0.625rem;
margin-top: 3.125rem;
`;
export const SNSInfoRow = styled.div`
display: flex;
align-items: center;
margin-bottom: 0.625rem;
`;
export const SNSIcon = styled.img`
width: 2.5rem;
height: 2.5rem;
margin-right: 0.625rem;
margin-top: 1.875rem;
flex-shrink: 0;
object-fit: cover;
`;
export const Text = styled.div`
font-size: 0.875rem;
color: ${({ theme }) => theme.colors.text.tertiary};
margin-top: 2.1875rem;
text-align: left;
`;
export const SnsConnection = styled.div`
font-size: 1rem;
font-weight: bold;
color: ${({ theme }) => theme.colors.gray[700]};
margin-bottom: 0.625rem;
text-align: left;
`;
export const MemberInfo = styled.div`
display: flex;
flex-direction: column;
margin-top: 2.1875rem;
width: 100%;
`;
export const MemberInfoRow = styled.div`
display: flex;
align-items: center;
justify-content: flex-start;
margin-bottom: 0.625rem;
margin-top: 0.625rem;
`;
export const Label = styled.div`
font-size: 0.875rem;
color: ${({ theme }) => theme.colors.gray[700]};
display: flex;
align-items: center;
width: 6.25rem;
`;
export const Info = styled.div`
font-size: 0.875rem;
color: ${({ theme }) => theme.colors.text.caption};
margin-left: 0.625rem;
flex-grow: 1;
text-align: left;
`;