]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.scss
add option to always show channel display name (#4422)
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / shared / metadata / video-avatar-channel.component.scss
1 @use '_mixins' as *;
2
3 @mixin main {
4 @include actor-avatar-size(35px);
5 }
6
7 @mixin secondary {
8 height: 60%;
9 width: 60%;
10 position: absolute;
11 bottom: -5px;
12 right: -5px;
13 background-color: rgba(0, 0, 0, 0);
14 }
15
16 .wrapper {
17 @include actor-avatar-size(35px);
18 @include margin-right(5px);
19
20 position: relative;
21 margin-bottom: 5px;
22
23 .main-avatar {
24 @include main();
25 }
26
27 .second-avatar {
28 @include secondary();
29 }
30 }