aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account-videos/account-videos.component.scss
blob: b26933d223b678285dfa60a0a65281ca2a7362dd (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
.video {
  display: flex;
  height: 130px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C6C6C6;

  my-video-thumbnail {
    margin-right: 10px;
  }

  .video-info {
    flex-grow: 1;

    .video-info-name {
      font-size: 16px;
      font-weight: $font-semibold;
    }

    .video-info-date-views {
      font-size: 13px;
    }
  }

  .edit-button {
    @include peertube-button-link;

    font-size: 15px;
    font-weight: $font-semibold;
    color: #585858;
    background-color: #E5E5E5;

    .icon.icon-edit {
      display: inline-block;
      background: url('../../../assets/images/account/edit.svg') no-repeat;
      background-size: contain;
      width: 21px;
      height: 21px;
      vertical-align: middle;
      position: relative;
      top: -2px;
    }
  }
}