aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/metadata/video-description.component.scss
blob: fc8b4574c2b08fc4f20c09ef84a28b603e78beaa (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
@use '_variables' as *;
@use '_mixins' as *;

.video-info-description {
  @include margin-left($video-watch-info-margin-left);
  @include margin-right(0);

  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 15px;

  .video-info-description-html {
    @include peertube-word-wrap;

    ::ng-deep a {
      text-decoration: none;
    }
  }

  .glyphicon,
  .description-loading {
    @include margin-left(3px);
  }

  .description-loading {
    display: inline-block;
  }

  .video-info-description-more {
    cursor: pointer;
    font-weight: $font-semibold;
    color: pvar(--greyForegroundColor);
    font-size: 14px;

    .glyphicon {
      position: relative;
      top: 2px;
    }
  }
}

@media screen and (max-width: 450px) {
  .video-info-description {
    font-size: 14px !important;
  }
}