aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-history/my-history.component.scss
blob: 21011a089af4c54a0ffc90828928d5b198009958 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@use '_variables' as *;
@use '_mixins' as *;

.no-history {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-weight: $font-semibold;
}

.top-buttons {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 250px 1fr auto auto;
  align-items: center;

  .search-wrapper {
    grid-column: 1;

    input {
      @include peertube-input-text(250px);
    }
  }

  .history-switch {
    @include margin-left(auto);
    @include margin-right(15px);

    grid-column: 3;
    display: flex;
    align-items: center;

    label {
      margin: 0 0 0 5px;
      color: var(--greyForegroundColor);
      font-weight: $font-semibold;
    }
  }

  .delete-history {
    @include peertube-button;
    @include grey-button;
    @include button-with-icon;

    grid-column: 4;
  }
}

.video {
  @include row-blocks($column-responsive: false);
}

.action-button {
  display: flex;
  align-self: flex-end;
}

@media screen and (max-width: $small-view) {
  .top-buttons {
    grid-template-columns: auto 1fr auto;
    row-gap: 20px;

    .history-switch {
      grid-row: 1;
      grid-column: 1;
      margin: 0;
    }

    .delete-history {
      grid-row: 1;
      grid-column: 3;
    }

    .search-wrapper {
      grid-column: 1 / 4;
    }
  }
}