aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/comment/video-comments.component.scss
blob: 4b00683abe7973d15497af88e2369084a2e8ea4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@use '_variables' as *;
@use '_mixins' as *;

#highlighted-comment {
  margin-bottom: 25px;
}

.view-replies {
  font-weight: $font-semibold;
  font-size: 15px;
  cursor: pointer;
}

.title-block {
  .title-page {
    @include margin-right(0);
  }

  my-feed {
    @include margin-left(5px);

    display: inline-block;
    opacity: 0;
    transition: ease-in .2s opacity;
    width: 12px;
    position: relative;
    top: -3px;
  }

  &:hover my-feed {
    opacity: 1;
  }
}

#dropdown-sort-comments {
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  transform: translateY(-7%);
}

@media screen and (max-width: 600px) {
  .view-replies {
    @include margin-left(46px);
  }
}

@media screen and (max-width: 450px) {
  .view-replies {
    font-size: 14px;
  }
}