]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/shared/metadata/video-description.component.scss
Replace glyphicon chevron
[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 font-size: 15px;
11
12 .video-info-description-html {
13 @include peertube-word-wrap;
14
15 ::ng-deep a {
16 text-decoration: none;
17 }
18 }
19
20 .description-loading {
21 @include margin-left(5px);
22 }
23
24 .video-info-description-more {
25 cursor: pointer;
26 font-weight: $font-semibold;
27 color: pvar(--greyForegroundColor);
28 font-size: 14px;
29 }
30 }
31
32 @media screen and (max-width: 450px) {
33 .video-info-description {
34 font-size: 14px !important;
35 }
36 }