]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/comment/video-comment.component.scss
Add avatar in comments
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .root-comment {
5 font-size: 15px;
6 display: flex;
7
8 img {
9 @include avatar(36px);
10
11 margin-top: 5px;
12 margin-right: 20px;
13 }
14
15 .comment {
16 flex-grow: 1;
17
18 .comment-account-date {
19 display: flex;
20 margin-bottom: 4px;
21
22 .comment-account {
23 font-weight: $font-bold;
24 }
25
26 .comment-date {
27 color: #585858;
28 margin-left: 10px;
29 }
30 }
31
32 .comment-actions {
33 margin: 10px 0;
34
35 .comment-action-reply {
36 color: #585858;
37 cursor: pointer;
38 }
39 }
40 }
41 }