aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list/video-overview.component.scss
blob: e7dc60b4b8164271952da6cc16034ee27d571883 (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
@import '_variables';
@import '_mixins';

.section {
  padding-top: 10px;

  &:first-child {
    padding-top: 30px;
  }

  my-video-miniature {
    text-align: left;
  }
}

.section-title {
  font-size: 17px;
  font-weight: $font-semibold;
  margin-bottom: 20px;

  a {
    @include disable-default-a-behaviour;

    color: #000;
  }
}

.channel {
  .section-title a {
    display: flex;
    width: fit-content;
    align-items: center;

    img {
      @include avatar(30px);

      margin-right: 10px;
    }
  }
}

@media screen and (max-width: 500px) {
  .section {
    @include video-miniature-small-screen;
  }
}