]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.component.scss
Add overview of a user's actions in user-edit (#2558)
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channel-edit.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .video-channel-title {
5 @include settings-big-title;
6 }
7
8 .form-sub-title {
9 margin-bottom: 20px;
10 }
11
12 my-actor-avatar-info {
13 display: block;
14 margin-bottom: 20px;
15 }
16
17 .input-group {
18 @include peertube-input-group(fit-content);
19 }
20
21 .input-group-append {
22 height: 30px;
23 }
24
25 input {
26 &[type=text] {
27 @include peertube-input-text(340px);
28
29 display: block;
30
31 &#name {
32 width: auto;
33 flex-grow: 1;
34 }
35 }
36
37 &[type=submit] {
38 @include peertube-button;
39 @include orange-button;
40 margin-left: auto;
41 }
42 }
43
44 label {
45 font-weight: $font-regular;
46 font-size: 100%;
47 }
48
49 textarea {
50 @include peertube-textarea(500px, 150px);
51
52 display: block;
53 }
54
55 my-markdown-textarea ::ng-deep {
56 .root {
57 @media screen and (max-width: 1400px) {
58 flex-direction: column !important;
59 }
60 }
61 }
62
63 .peertube-select-container {
64 @include peertube-select-container(340px);
65 }