]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+videos/+video-edit/video-add-components/video-send.scss
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-send.scss
... / ...
CommitLineData
1@use '_variables' as *;
2@use '_mixins' as *;
3
4$width-size: 275px;
5
6.alert.alert-danger {
7 text-align: center;
8
9 > div {
10 font-weight: $font-semibold;
11 }
12}
13
14.first-step-block {
15 display: flex;
16 flex-direction: column;
17 align-items: center;
18
19 .upload-icon {
20 @include apply-svg-color(pvar(--inputBorderColor));
21
22 width: 90px;
23 margin-bottom: 25px;
24 }
25
26 .peertube-select-container {
27 @include peertube-select-container($width-size);
28 }
29 my-select-options ::ng-deep ng-select,
30 my-select-channel ::ng-deep ng-select,
31 .peertube-radio-container,
32 .form-group-description {
33 width: $width-size;
34
35 @media screen and (max-width: $width-size) {
36 width: 100%;
37 }
38 }
39
40 .form-group-description {
41 white-space: nowrap;
42 }
43
44 input[type=text] {
45 @include peertube-input-text($width-size);
46 display: block;
47 }
48
49 input[type=button] {
50 @include peertube-button;
51 @include orange-button;
52
53 width: $width-size;
54 margin-top: 30px;
55 }
56
57 .button-file {
58 @include peertube-button-file(max-content);
59 @include orange-button;
60 }
61}