Rev 16667 | Rev 16669 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@import "../../css/shared/variables.scss";
.comments_list {
display: flex;
flex-direction: column;
gap: .5rem;
max-height: 250px;
overflow-y: auto;
}
.comment {
background-color: $bg-color-secondary;
border-radius: 10px;
border-top-left-radius: 0;
display: flex;
flex-direction: column;
gap: .5rem;
padding: .5rem 1rem;
&_header {
align-items: center;
display: flex;
gap: .5rem;
position: relative;
width: 100%;
img {
width: 40px;
height: 40px;
border-radius: 100%;
}
h3 {
color: $title-color;
font-weight: 600;
}
span {
color: $subtitle-color;
font-size: .9rem;
}
}
}