MessageHeader.module.scss
713 Bytes
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
@import '../../../../../styles/app';
.messageHeader {
width: 100%;
}
.messageHeaderLine {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0;
flex-wrap: wrap;
}
.messageFrom {
display: flex;
align-items: center;
img {
height: 30px;
width: 30px;
margin-right: 5px;
}
}
.messageFromInfo {
display: flex;
flex-direction: column;
line-height: 1.1;
}
.email {
color: #868e96;
font-size: $font-size-mini;
margin-left: 5px;
}
.to {
color: #868e96;
}
.messageHeaderDate {
padding: 15px 0;
& :global .btn-group {
margin-left: 10px;
button {
font-size: 12px;
i {
margin-right: 3px;
}
}
}
}