adding missing i18n for schedule option
[oweals/peertube.git] / client / src / app / videos / +video-edit / video-add-components / video-import-url.component.scss
1 @import 'variables';
2 @import 'mixins';
3
4 $width-size: 190px;
5
6 .peertube-select-container {
7   @include peertube-select-container($width-size);
8 }
9
10 .import-video-url {
11   display: flex;
12   flex-direction: column;
13   align-items: center;
14
15   .icon.icon-upload {
16     @include icon(90px);
17     margin-bottom: 25px;
18     cursor: default;
19
20     background-image: url('../../../../assets/images/video/upload.svg');
21   }
22
23   input[type=text] {
24     @include peertube-input-text($width-size);
25     display: block;
26   }
27
28   input[type=button] {
29     @include peertube-button;
30     @include orange-button;
31
32     width: $width-size;
33     margin-top: 30px;
34   }
35 }
36
37