Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6830 | Rev 7139 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6830 stevensc 1
.comment-container {
2
  display: flex;
3
  gap: 0.5rem;
4
  align-items: flex-start;
5
 
6
  .user-image {
7
    width: 50px;
8
    object-fit: contain;
9
    border-radius: 50%;
10
    background: $white;
11
  }
12
 
13
  .comment-content {
14
    background-color: $chat-send;
15
    border-radius: $border-radius;
16
    border-top-left-radius: 0;
17
    display: flex;
18
    flex-direction: column;
19
    gap: 0.5rem;
7081 stevensc 20
    width: 90%;
6830 stevensc 21
    padding: 0.5rem;
22
 
23
    .info {
24
      display: flex;
25
      align-items: center;
26
      justify-content: space-between;
27
 
28
      h3 {
29
        display: inline;
30
        font-weight: bold;
31
      }
32
 
33
      span {
34
        display: inline-flex;
35
        align-items: center;
36
        gap: 0.5rem;
37
        position: relative;
38
      }
39
    }
40
 
41
    p {
42
      width: 100%;
43
      overflow: hidden;
44
      text-overflow: ellipsis;
45
    }
46
  }
47
}
48
 
49
.comments-container {
50
  display: flex;
51
  flex-direction: column;
52
  gap: 0.5rem;
53
  overflow: hidden;
54
  transition: all 0.3s;
55
 
56
  &.show {
57
    height: fit-content;
58
  }
59
 
60
  &.hidden {
61
    height: 0;
62
  }
63
}
64
 
65
.comment-list {
66
  display: flex;
67
  flex-direction: column;
68
  gap: 1rem;
69
  max-height: 300px;
70
  overflow-y: auto;
71
  padding-bottom: .5rem;
72
}