]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-playlists/my-account-video-playlists.component.scss
Add search bars for a user's videos and playlist library
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-playlists / my-account-video-playlists.component.scss
CommitLineData
830b4faf
C
1@import '_variables';
2@import '_mixins';
3
4.create-button {
5 @include create-button;
6}
7
03652b31 8::ng-deep .action-button {
830b4faf
C
9 &.action-button-delete {
10 margin-right: 10px;
11 }
12}
13
14.video-playlist {
15 @include row-blocks;
16
17 .miniature-wrapper {
18 flex-grow: 1;
19
03652b31 20 ::ng-deep .miniature {
830b4faf
C
21 display: flex;
22
bce47964 23 .miniature-info {
830b4faf 24 margin-left: 10px;
bce47964 25 width: auto;
830b4faf
C
26 }
27 }
28 }
29
30 .video-playlist-buttons {
31 min-width: 190px;
bf64ed41 32 height: max-content;
830b4faf
C
33 }
34}
35
36.video-playlists-header {
bf64ed41
RK
37 display: flex;
38 justify-content: space-between;
830b4faf
C
39 text-align: right;
40 margin: 20px 0 50px;
bf64ed41
RK
41
42 input[type=text] {
43 @include peertube-input-text(300px);
44 }
830b4faf
C
45}
46
47@media screen and (max-width: 800px) {
48 .video-playlists-header {
49 text-align: center;
50 }
51
52 .video-playlist {
53
54 .video-playlist-buttons {
55 margin-top: 10px;
56 }
57 }
b63331ec
C
58
59 my-video-playlist-miniature ::ng-deep .miniature {
60 flex-direction: column;
61
62 .miniature-info {
63 margin-left: 0 !important;
64 }
65
66 .miniature-name {
67 max-width: $video-thumbnail-width;
68 }
69 }
830b4faf 70}