]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-playlists/my-account-video-playlists.component.scss
fix reactive file upload button
[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 }
c9e3565d
CC
44
45 h1 {
46 font-size: 1.5rem;
47 }
830b4faf
C
48}
49
ece3029b 50@media screen and (max-width: $small-view) {
830b4faf
C
51 .video-playlists-header {
52 text-align: center;
53 }
54
55 .video-playlist {
56
57 .video-playlist-buttons {
58 margin-top: 10px;
59 }
60 }
b63331ec
C
61
62 my-video-playlist-miniature ::ng-deep .miniature {
63 flex-direction: column;
64
65 .miniature-info {
66 margin-left: 0 !important;
67 }
68
69 .miniature-name {
70 max-width: $video-thumbnail-width;
71 }
72 }
830b4faf 73}
4682468d
K
74
75@media only screen and (min-width: $mobile-view) and (max-width: $small-view) {
76 .video-playlists-header {
77 input[type=text] {
78 width: 42% !important;
79 }
80 }
81}
82
83@media screen and (max-width: $mobile-view) {
84 .video-playlists-header {
85 flex-direction: column;
86
87 input[type=text] {
88 width: 100% !important;
89 margin-bottom: 12px;
90 }
91 }
92}