aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add-components/video-import-torrent.component.scss
blob: 1ef5adc25844a88b8c27aad6cee7496f5466c199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import 'variables';
@import 'mixins';

$width-size: 190px;

.peertube-select-container {
  @include peertube-select-container($width-size);
}

.import-video-torrent {
  display: flex;
  flex-direction: column;
  align-items: center;

  .icon.icon-upload {
    @include icon(90px);
    margin-bottom: 25px;
    cursor: default;

    background-image: url('../../../../assets/images/video/upload.svg');
  }

  input[type=text] {
    @include peertube-input-text($width-size);
    display: block;
  }

  input[type=button] {
    @include peertube-button;
    @include orange-button;

    width: $width-size;
    margin-top: 30px;
  }
}