]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-list/video-list.component.scss
Fix tests
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-list / video-list.component.scss
CommitLineData
a99593ed
C
1.videos-info {
2
3 padding-bottom: 20px;
4 margin-bottom: 20px;
5 border-bottom: 1px solid #f1f1f1;
6 height: 40px;
7 line-height: 40px;
8 width: 765px;
9 margin-left: 15px;
10
11 my-video-sort {
12 padding-right: 0;
13 }
14
15 .videos-total-results {
16 font-size: 13px;
17 padding-left: 0;
18 }
e56b20f5
C
19
20 my-loader {
21 display: inline-block;
22 margin-left: 5px;
23 }
a99593ed 24}
157cb9c9
C
25
26.videos-miniatures {
27 min-height: 600px;
28
7914607e
C
29 my-video-miniature {
30 transition: all 0.5s ease;
31
32 &.ng-enter {
33 opacity: 0;
34 }
35
36 &.ng-enter-active {
37 opacity: 1;
38 }
39
40 &.ng-leave {
41 opacity: 0;
42 }
157cb9c9
C
43 }
44
45 .no-video {
46 margin-top: 50px;
47 text-align: center;
48 }
49}
50
51pagination {
52 display: block;
53 text-align: center;
54}