aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/overview/comments/video-comment-list.component.scss
blob: 3cf7b8db669b2c83063a753fae6dc0112e32469d (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
@use '_mixins' as *;
@use '_variables' as *;

my-feed {
  @include margin-left(5px);

  display: inline-block;
  width: 15px;
}

my-global-icon {
  width: 24px;
  height: 24px;
}

.video {
  display: flex;
  flex-direction: column;

  em {
    font-size: 11px;
  }

  a {
    @include ellipsis;

    color: pvar(--mainForegroundColor);
  }
}

.comment-html {
  ::ng-deep {
    > div {
      max-height: 22px;
    }

    div,
    p {
      @include ellipsis;
    }

    p {
      margin: 0;
    }
  }
}

@media screen and (max-width: $primeng-breakpoint) {
  .video {
    align-items: flex-start !important;
  }
}