34 lines
631 B
CSS
34 lines
631 B
CSS
.CommentCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
word-wrap: break-word;
|
|
box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, 0.25);
|
|
border: 1px solid black;
|
|
border-radius: 0.7em;
|
|
margin: 15px 0 15px 0;
|
|
}
|
|
.CommentCard__container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
}
|
|
.CommentCard__user-logo {
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
width: 50px;
|
|
height: 50px;
|
|
cursor: pointer;
|
|
}
|
|
.CommentCard__message-info {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 10px;
|
|
font-size: 16px;
|
|
}
|
|
.CommentCard__message {
|
|
line-height: 1.8;
|
|
margin: 15px 0 0 0;
|
|
}
|