]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/video-avatar-channel.component.scss
Move to sass module
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / 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 &.generic-channel {
24 .account {
25 @include main();
26 }
27
28 .channel {
29 display: none !important;
30 }
31 }
32
33 &:not(.generic-channel) {
34 .account {
35 @include secondary();
36 }
37
38 .channel {
39 @include main();
40 }
41 }
42 }