lbry-desktop/ui/scss/component/_comments.scss

50 lines
801 B
SCSS
Raw Normal View History

2019-12-04 14:23:43 -05:00
.comments {
@extend .ul--no-style;
}
2019-06-26 19:59:27 -04:00
.comment {
2019-10-24 13:24:53 -04:00
padding: var(--spacing-small) 0;
2019-12-04 14:23:43 -05:00
display: flex;
2019-10-24 13:24:53 -04:00
flex-direction: row;
2020-01-08 14:20:30 -05:00
font-size: var(--font-body);
2019-12-04 13:07:40 -05:00
padding: var(--spacing-medium) 0;
margin: 0;
&:first-of-type {
padding-top: 0;
}
2019-05-21 16:15:37 -05:00
&:not(:last-of-type) {
2019-11-22 16:13:00 -05:00
border-bottom: 1px solid var(--color-border);
2019-05-22 13:59:46 -05:00
}
}
2019-10-24 13:24:53 -04:00
.comment__body_container {
2019-12-04 13:07:40 -05:00
padding-right: var(--spacing-small);
2019-10-24 13:24:53 -04:00
}
2019-05-22 13:59:46 -05:00
.comment__meta {
2019-10-24 13:24:53 -04:00
text-overflow: ellipsis;
2019-12-04 13:07:40 -05:00
margin-bottom: var(--spacing-small);
}
.comment__message {
white-space: pre-line;
2019-12-04 13:07:40 -05:00
margin-top: var(--spacing-small);
}
.comment__author {
2019-12-04 13:07:40 -05:00
text-overflow: ellipsis;
padding-right: var(--spacing-small);
}
.comment__time {
2019-12-04 13:07:40 -05:00
opacity: 0.3;
white-space: nowrap;
2019-05-21 16:15:37 -05:00
}
.comment__char-count {
align-self: flex-end;
2019-11-22 16:13:00 -05:00
font-size: var(--font-small);
}