aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.scss
blob: 84ed25ae8c3e4f9db36c7cd378a4c8b3575da725 (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
@use '_variables' as *;
@use '_mixins' as *;

.title-page-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
  flex-wrap: wrap-reverse;

  .title-page.active,
  .title-page.title-page-single {
    @include margin-right(.5rem !important);

    margin-bottom: unset;
  }
}

.title-page {
  margin-top: 0;
}

.title-page-autoplay {
  @include margin-left(auto);

  display: flex;
  width: max-content;
  height: max-content;
  align-items: center;

  span {
    @include margin-right(0.3rem);

    text-transform: uppercase;
    font-size: 85%;
    font-weight: 600;
  }
}

hr {
  margin-top: 0;
}

my-video-miniature {
  display: block;
}

.other-videos:not(.display-as-row) my-video-miniature {
  min-width: $video-thumbnail-medium-width;
  max-width: $video-thumbnail-medium-width;
}

.display-as-row {
  my-video-miniature {
    margin-bottom: 20px;
  }

  hr {
    display: none;
  }

  @media screen and (max-width: $mobile-view) {
    my-video-miniature {
      margin-bottom: 10px;
    }
  }
}