]> 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
Align layout for create video-channel (my-account) on create user (admin)
[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 my-actor-avatar-info {
9 display: block;
10 margin-bottom: 20px;
11 }
12
13 .input-group {
14 @include peertube-input-group(fit-content);
15 }
16
17 .input-group-append {
18 height: 30px;
19 }
20
21 input {
22 &[type=text] {
23 @include peertube-input-text(340px);
24
25 display: block;
26
27 &#name {
28 width: auto;
29 flex-grow: 1;
30 }
31 }
32
33 &[type=submit] {
34 @include peertube-button;
35 @include orange-button;
36 margin-left: auto;
37 }
38 }
39
40 label {
41 font-weight: $font-regular;
42 font-size: 100%;
43 }
44
45 textarea {
46 @include peertube-textarea(500px, 150px);
47
48 display: block;
49 }
50
51 my-markdown-textarea ::ng-deep {
52 .root {
53 @media screen and (max-width: 1400px) {
54 flex-direction: column !important;
55 }
56 }
57 }
58
59 .peertube-select-container {
60 @include peertube-select-container(340px);
61 }
62
63 .breadcrumb {
64 @include breadcrumb;
65 }