]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-list/video-overview.component.scss
Add pagination to account video channels endpoint
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-list / video-overview.component.scss
CommitLineData
2d3741d6
C
1@import '_variables';
2@import '_mixins';
830b4faf 3@import '_miniature';
2d3741d6
C
4
5.section {
0f4905e1
C
6 max-height: 500px; // 2 rows max
7 overflow: hidden;
2d3741d6
C
8 padding-top: 10px;
9
10 &:first-child {
11 padding-top: 30px;
12 }
6aff854c
C
13
14 my-video-miniature {
15 text-align: left;
16 }
2d3741d6
C
17}
18
19.section-title {
9ffdd52a 20 font-size: 24px;
2d3741d6 21 font-weight: $font-semibold;
9ffdd52a 22 margin-bottom: 10px;
2d3741d6
C
23
24 a {
e78980eb
RK
25 &:hover, &:focus:not(.focus-visible), &:active {
26 text-decoration: none;
27 outline: none;
28 }
2d3741d6 29
9a0fc840 30 color: var(--mainForegroundColor);
2d3741d6 31 }
1a471091
C
32}
33
34.channel {
35 .section-title a {
36 display: flex;
37 width: fit-content;
38 align-items: center;
39
40 img {
9ffdd52a 41 @include avatar(28px);
1a471091 42
9ffdd52a 43 margin-right: 8px;
1a471091
C
44 }
45 }
6aff854c
C
46}
47
48@media screen and (max-width: 500px) {
0f4905e1
C
49 .margin-content {
50 margin: 0 !important;
51 }
52
9ffdd52a
C
53 .section-title {
54 font-size: 17px;
55 }
56
6aff854c 57 .section {
0f4905e1
C
58 max-height: initial;
59 overflow: initial;
60
6aff854c
C
61 @include video-miniature-small-screen;
62 }
830b4faf 63}