]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/shared/metadata/video-description.component.scss
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / shared / metadata / video-description.component.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 .video-info-description {
5 @include margin-left($video-watch-info-margin-left);
6 @include margin-right(0);
7
8 margin-top: 20px;
9 margin-bottom: 20px;
10
11 .video-info-description-html {
12 @include peertube-word-wrap;
13
14 ::ng-deep a {
15 text-decoration: none;
16 }
17 }
18
19 .description-loading {
20 @include margin-left(5px);
21 }
22
23 .video-info-description-more {
24 cursor: pointer;
25 font-weight: $font-semibold;
26 color: pvar(--greyForegroundColor);
27 font-size: 14px;
28 }
29 }
30
31 @media screen and (max-width: 450px) {
32 .video-info-description {
33 font-size: 14px !important;
34 }
35 }