Reorganize client shared modules
[oweals/peertube.git] / client / src / app / videos / +video-edit / video-add-components / video-send.scss
1 @import 'variables';
2 @import 'mixins';
3
4 $width-size: 190px;
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     width: 90px;
21     margin-bottom: 25px;
22
23     @include apply-svg-color(#C6C6C6);
24   }
25
26   .peertube-select-container {
27     @include peertube-select-container($width-size);
28   }
29
30   input[type=text] {
31     @include peertube-input-text($width-size);
32     display: block;
33   }
34
35   input[type=button] {
36     @include peertube-button;
37     @include orange-button;
38
39     width: $width-size;
40     margin-top: 30px;
41   }
42
43   .button-file {
44     @include peertube-button-file(max-content);
45   }
46 }