focalboard/webapp/src/components/commentsList.scss
2020-10-27 11:46:35 +01:00

33 lines
584 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;
}
.newcomment {
color: rgba(var(--main-fg), 0.8);
flex-grow: 1;
margin-left: 5px;
.octo-button {
display: none;
}
&:focus {
.octo-button {
display: block;
}
}
}
}