]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/shared/comment/video-comments.component.scss
5001ad168c2849fb9313af1723ba4c8d100cb59c
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / shared / comment / video-comments.component.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 #highlighted-comment {
5 margin-bottom: 25px;
6 }
7
8 .view-replies {
9 font-weight: $font-semibold;
10 cursor: pointer;
11 position: relative;
12
13 .chevron-down {
14 @include margin-left(0);
15 }
16 }
17
18 .title-block {
19 .title-page {
20 @include margin-right(0);
21 }
22
23 my-feed {
24 @include margin-left(5px);
25
26 display: inline-block;
27 opacity: 0;
28 transition: ease-in .2s opacity;
29 width: 12px;
30 position: relative;
31 top: -3px;
32 }
33
34 &:hover my-feed {
35 opacity: 1;
36 }
37 }
38
39 #dropdown-sort-comments {
40 font-weight: $font-semibold;
41 text-transform: uppercase;
42 border: 0;
43 }
44
45 @media screen and (max-width: 450px) {
46 .view-replies {
47 font-size: 14px;
48 }
49 }