Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11347 nelberth 1
@use '../../../css/shared/variables.scss';
2
 
3
.iconContainer {
4
  display: flex;
5
  justify-content: center;
6
  align-items: center;
7
}
8
.statusIcon {
9
  font-size: 0.7rem;
10
  margin-left: 0.2rem;
11
  &_offline {
12
    color: variables.$gray;
13
  }
14
  &_online {
15
    color: variables.$online-green;
16
  }
17
}
18
 
19
.entity {
20
  display: flex;
21
  font-size: 1.2rem;
22
  padding: 0.5rem 1rem;
23
  &_unread {
24
    background-color: variables.$light-gray;
25
  }
26
  & + & {
27
    border-top: 1px solid variables.$light-gray;
28
  }
29
  img {
30
    clip-path: circle(50%);
31
    width: 50px;
32
    height: 50px;
33
    object-fit: contain;
34
  }
35
  .entityInfo {
36
    display: flex;
37
    margin-left: 1rem;
38
    flex-direction: column;
39
  }
40
 
41
  .nameContainer {
42
    display: flex;
43
    align-items: center;
44
  }
45
 
46
  .newMessage {
47
    margin-top: 0.5rem;
48
    font-size: 1rem;
49
  }
50
}
51
.addGroup {
52
  align-items: center;
53
  justify-content: center;
54
  height: 4rem;
55
  background-color: variables.$dark-white;
56
  i {
57
    margin-right: 0.5rem;
58
  }
59
}