aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/abstract-video-list.scss
blob: 0f0ff20f0bb3ccb97d80ec349cf96f4455bde15c (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
.videos {
  text-align: center;

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

@media screen and (max-width: 400px) and (min-resolution: 1.5dppx) {
  .videos {
    text-align: center;

    /deep/ .video-miniature {
      padding-right: 0;
      height: 215px;
      width: 100%;

      .video-miniature-information {
        width: 100%;
      }

      /deep/ .video-thumbnail {
        width: 100%;

        img {
          width: 100%;
        }
      }
    }
  }
}