@@ -6,36 +6,31 @@ import { theme } from '../../../utils'
6
6
export const Wrapper = styled . div `
7
7
display: flex;
8
8
`
9
-
10
9
export const AvatarWrapper = styled . div `
11
10
margin-right: 12px;
12
11
display: flex;
13
12
flex-direction: column;
14
13
`
15
-
16
14
export const Avatar = styled ( Img ) `
17
- border-radius:8px ;
15
+ border-radius:4px ;
18
16
width:${ ( { displayStyle} ) =>
19
17
displayStyle === 'default' ?'120px' :'70px' } ;
20
18
height:${ ( { displayStyle} ) =>
21
19
displayStyle === 'default' ?'120px' :'70px' } ;
22
20
margin-top: 6px;
23
21
margin-bottom: 10px;
24
22
`
25
-
26
23
export const BriefTextWrapper = styled . div `
27
24
display: flex;
28
25
flex-direction: column;
29
26
margin-left: 10px;
30
27
`
31
-
32
28
export const UserTitle = styled . div `
33
29
display: flex;
34
30
font-size: 1.2rem;
35
31
color:${ theme ( 'banner.title' ) } ;
36
32
margin-bottom: 5px;
37
33
`
38
-
39
34
export const UserDesc = styled . div `
40
35
color:${ theme ( 'banner.desc' ) } ;
41
36
display:${ ( { hide} ) => ( hide ?'none' :'flex' ) } ;
@@ -66,7 +61,6 @@ export const DescIconLable = styled(Img)`
66
61
margin-right: 10px;
67
62
margin-top: 4px;
68
63
`
69
-
70
64
export const BackgroundDivider = styled . div `
71
65
width: 5px;
72
66
height: 5px;
@@ -98,7 +92,6 @@ export const SocialSpliter = styled.div`
98
92
export const SocialWrapper = styled . div `
99
93
display: flex;
100
94
`
101
-
102
95
export const SocialIcon = styled ( Img ) `
103
96
fill:${ theme ( 'banner.desc' ) } ;
104
97
display:${ ( { active} ) => ( active ?'block' :'none' ) } ;
@@ -118,7 +111,6 @@ export const SocialIcon = styled(Img)`
118
111
export const EditWrapper = styled . div `
119
112
display:${ ( { show} ) => ( show ?'block' :'none' ) } ;
120
113
`
121
-
122
114
export const EditIcon = styled ( Img ) `
123
115
fill:${ theme ( 'banner.desc' ) } ;
124
116
width: 20px;