]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
8cbc40b2 1@use '_mixins' as *;
dd4f25ee 2
7d026caf
C
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
dd4f25ee 16.wrapper {
7d026caf 17 @include actor-avatar-size(35px);
27bc9586 18 @include margin-right(5px);
c2caa99b 19
dd4f25ee 20 position: relative;
adcf9212 21 margin-bottom: 5px;
dd4f25ee 22
7d026caf
C
23 &.generic-channel {
24 .account {
25 @include main();
26 }
c2caa99b 27
7d026caf
C
28 .channel {
29 display: none !important;
30 }
dd4f25ee
RK
31 }
32
7d026caf
C
33 &:not(.generic-channel) {
34 .account {
35 @include secondary();
deb8b9cd 36 }
dd4f25ee 37
7d026caf
C
38 .channel {
39 @include main();
40 }
dd4f25ee
RK
41 }
42}