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
@import "../../global.scss";
.chat_list_wrapper {
.circle_pic {
width:50px;
height: 50px;
border-radius: 50%;
background-color: $primary_color;
background-image: url("../../assets/id.png");
background-position: center;
background-size: 30px;
background-repeat: no-repeat;
img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
border-radius: 50%;
}
}
.detail_section {
width:calc(100% - 130px);
padding: 5px;
padding-left:20px;
h5 {
margin:0px;
padding:0px;
color:$dark_prime;
font-size: 16px;
span{
color:$primary_color;
font-size: 14px;
position: relative;
bottom: 6px;
}
}
p {
margin:0px;
padding:0px;
color:#988FA7;
}
}
.end_section{
width: 80px;
height: 50px;
padding: 0px;
.not{
color:$white_color;
background-color:$primary_color;
width: 18px;
height: 18px;
border-radius: 50%;
text-align: center;
font-size: 13px;
margin-bottom: 7px;
}
p {
margin:0px;
padding:0px;
color:#988FA7;
text-align:right;
}
}
}