26 lines
452 B
SCSS
26 lines
452 B
SCSS
.CommentsList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
.comment-avatar {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 100%;
|
|
box-shadow: rgba(15, 15, 15, 0.1) 0px 2px 4px;
|
|
}
|
|
|
|
.commentrow {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.newcomment {
|
|
color: rgba(var(--main-fg), 0.8);
|
|
flex-grow: 1;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|