]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-add-components/video-send.scss
Move to stylelint
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-send.scss
CommitLineData
78848714
C
1@import 'variables';
2@import 'mixins';
fbad87b0
C
3
4$width-size: 190px;
5
7373507f
C
6.alert.alert-danger {
7 text-align: center;
8
931d3430 9 > div {
7373507f
C
10 font-weight: $font-semibold;
11 }
12}
13
457bb213 14.first-step-block {
fbad87b0
C
15 display: flex;
16 flex-direction: column;
17 align-items: center;
18
457bb213 19 .upload-icon {
931d3430
C
20 @include apply-svg-color(#C6C6C6);
21
457bb213 22 width: 90px;
fbad87b0 23 margin-bottom: 25px;
457bb213
C
24 }
25
26 .peertube-select-container {
27 @include peertube-select-container($width-size);
fbad87b0 28 }
02c01341
RK
29 my-select-options ::ng-deep ng-select,
30 my-select-channel ::ng-deep ng-select {
31 width: $width-size;
32 @media screen and (max-width: $width-size) {
33 width: 100%;
34 }
35 }
fbad87b0
C
36
37 input[type=text] {
38 @include peertube-input-text($width-size);
39 display: block;
40 }
41
42 input[type=button] {
43 @include peertube-button;
44 @include orange-button;
45
46 width: $width-size;
47 margin-top: 30px;
48 }
fbad87b0 49
457bb213 50 .button-file {
e61151b0 51 @include peertube-button-file(max-content);
6c808af9 52 @include orange-button;
457bb213 53 }
457bb213 54}