aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/video-list/overview/video-overview.component.scss
blob: b1b42b51781d10af9da872c4f999ead3cd3b3c7a (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 *;
@use '_miniature' as *;

.section-title {
  // make the element span a full grid row within .videos grid
  grid-column: 1 / -1;
}

.margin-content {
  @include grid-videos-miniature-layout-with-margins;
}

.section {
  &:first-child {
    padding-top: 15px;

    .section-title {
      border-top: 0 !important;
    }
  }

  .section-title {
    @include font-size(1.5rem);
    @include padding-top(1.25rem);
    @include margin-bottom(2rem);

    &:not(h2) {
      border-top: 1px solid $separator-border-color;
    }

    a > h2 {
      margin-bottom: 0;
      display: inline-block;
      font-weight: $font-bold;
    }

    my-actor-avatar {
      @include margin-right(8px);

      display: inline-block;
      vertical-align: text-top;
    }
  }

  @media screen and (max-width: $mobile-view) {
    max-height: initial;
    overflow: initial;

    .section-title {
      @include margin-left(10px);
    }
  }
}