aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/videos-selection.component.scss
blob: d3cbabf238a2a9391515f1ac59008916cc413f00 (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
55
56
57
@import '_variables';
@import '_mixins';

.action-selection-mode {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;

  .action-selection-mode-child {
    position: fixed;

    .action-button {
      display: inline-block;
    }

    .action-button-cancel-selection {
      @include peertube-button;
      @include grey-button;

      margin-right: 10px;
    }
  }
}

.video {
  @include row-blocks;

  &:first-child {
    margin-top: 47px;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-left: 12px;
  }

  my-video-miniature {
    flex-grow: 1;
  }
}

@media screen and (max-width: $small-view) {
  .video {
    flex-direction: column;
    height: auto;

    .checkbox-container {
      display: none;
    }

    my-button {
      margin-top: 10px;
    }
  }
}