aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-add-components/video-send.scss
blob: e601c3dff6610acdf0826d59d29c0dde20e205f0 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@use '_variables' as *;
@use '_mixins' as *;

$width-size: 190px;

.alert.alert-danger {
  text-align: center;

  > div {
    font-weight: $font-semibold;
  }
}

.first-step-block {
  display: flex;
  flex-direction: column;
  align-items: center;

  .upload-icon {
    @include apply-svg-color(#C6C6C6);

    width: 90px;
    margin-bottom: 25px;
  }

  .peertube-select-container {
    @include peertube-select-container($width-size);
  }
  my-select-options ::ng-deep ng-select,
  my-select-channel ::ng-deep ng-select {
    width: $width-size;
    @media screen and (max-width: $width-size) {
      width: 100%;
    }
  }

  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;
  }

  .button-file {
    @include peertube-button-file(max-content);
    @include orange-button;
  }
}