]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-playlists/my-account-video-playlists.component.scss
Use default nsfw instance policy for search index
[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 39 margin: 20px 0 50px;
bf64ed41
RK
40
41 input[type=text] {
42 @include peertube-input-text(300px);
43 }
830b4faf
C
44}
45
ece3029b 46@media screen and (max-width: $small-view) {
830b4faf
C
47 .video-playlists-header {
48 text-align: center;
49 }
50
51 .video-playlist {
52
53 .video-playlist-buttons {
54 margin-top: 10px;
55 }
56 }
b63331ec
C
57
58 my-video-playlist-miniature ::ng-deep .miniature {
59 flex-direction: column;
60
61 .miniature-info {
62 margin-left: 0 !important;
63 }
64
65 .miniature-name {
66 max-width: $video-thumbnail-width;
67 }
68 }
830b4faf 69}
4682468d
K
70
71@media only screen and (min-width: $mobile-view) and (max-width: $small-view) {
72 .video-playlists-header {
73 input[type=text] {
74 width: 42% !important;
75 }
76 }
77}
78
79@media screen and (max-width: $mobile-view) {
80 .video-playlists-header {
81 flex-direction: column;
82
83 input[type=text] {
84 width: 100% !important;
85 margin-bottom: 12px;
86 }
87 }
88}