Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3507 stevensc 1
.peopleYouMayKnow {
2
  background: $bg-color;
3
  margin-bottom: 1rem;
4
}
5
 
6
.suggestionList {
7
  max-height: 60vh;
8
  overflow: auto;
9
  width: 100%;
10
}
11
 
12
.viewMore {
13
  margin-top: 1rem;
14
  text-align: center;
15
  a {
16
    font-weight: 500;
17
    color: $font-color;
18
    &:hover {
19
      color: $font-color-hover;
20
    }
21
  }
22
}
23
 
24
.user {
25
  display: flex;
26
  align-items: center;
27
  padding: 1rem;
28
  gap: 0.5rem;
29
  flex-direction: column;
30
  border-top: 1px solid $border-primary;
31
  img {
32
    border-radius: 50%;
33
    max-width: 3.3rem;
3548 stevensc 34
    background: #fff;
3507 stevensc 35
  }
36
  div.d-flex {
37
    gap: 0.5rem;
38
  }
39
  h4{
40
    font-weight: bold;
41
  }
42
}