47 lines
730 B
SCSS
47 lines
730 B
SCSS
|
.profile {
|
||
|
white-space: normal;
|
||
|
text-align: left;
|
||
|
letter-spacing: 0.01em;
|
||
|
min-height: 88px;
|
||
|
border-bottom: 1px solid;
|
||
|
padding: 16px;
|
||
|
font-weight: 400;
|
||
|
border-radius: 0;
|
||
|
|
||
|
.avatar-wrapper {
|
||
|
.avatar {
|
||
|
margin-right: 16px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.profile-name {
|
||
|
font-size: 16px;
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
.profile-last-message {
|
||
|
line-height: normal;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
.profile-last-message-time {
|
||
|
font-size: 12px;
|
||
|
margin-top: 4px;
|
||
|
}
|
||
|
|
||
|
.profile-mood {
|
||
|
line-height: normal;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.unread-message-count {
|
||
|
font-size: 12px;
|
||
|
border-radius: 50%;
|
||
|
text-align: center;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
line-height: 20px;
|
||
|
}
|
||
|
}
|