]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.scss
Add ability to set a name to a channel
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .create-button {
5 @include create-button('../../../assets/images/global/add.svg');
6 }
7
8 /deep/ .action-button {
9 &.action-button-delete {
10 margin-right: 10px;
11 }
12 }
13
14 .video-channel {
15 display: flex;
16 min-height: 130px;
17 padding-bottom: 20px;
18 margin-bottom: 20px;
19 border-bottom: 1px solid #C6C6C6;
20
21 img {
22 @include avatar(80px);
23
24 margin-right: 10px;
25 }
26
27 .video-channel-info {
28 flex-grow: 1;
29
30 a.video-channel-names {
31 @include disable-default-a-behaviour;
32
33 width: fit-content;
34 display: flex;
35 align-items: baseline;
36 color: #000;
37
38 .video-channel-display-name {
39 font-weight: $font-semibold;
40 font-size: 18px;
41 }
42
43 .video-channel-name {
44 font-size: 14px;
45 color: #777272;
46 margin-left: 5px;
47 }
48 }
49 }
50
51 .video-channel-buttons {
52 min-width: 190px;
53 }
54 }
55
56 .video-channels-header {
57 text-align: right;
58 margin: 20px 0 50px;
59 }
60
61 @media screen and (max-width: 800px) {
62 .video-channels-header {
63 text-align: center;
64 }
65
66 .video-channel {
67 flex-direction: column;
68 height: auto;
69 text-align: center;
70
71 .video-channel-names {
72 justify-content: center;
73 }
74
75 img {
76 margin-right: 0;
77 }
78
79 .video-channel-buttons {
80 margin-top: 10px;
81 }
82 }
83 }