Rev 3952 | Rev 3964 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
.comment-container {
display: flex;
gap: 0.5rem;
align-items: flex-start;
.user-image {
width: 50px;
object-fit: contain;
border-radius: 50%;
background: $white;
}
.comment-content {
background-color: $bg-color-secondary;
border-radius: $border-radius;
border-top-left-radius: 0;
display: flex;
flex-direction: column;
gap: 0.5rem;
width: 100%;
padding: 0.5rem;
}
}
.comment-list {
display: flex;
flex-direction: column;
gap: 1rem;
max-height: 300px;
overflow-y: auto;
}