diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/+my-library/my-videos/my-videos.component.html | 2 | ||||
-rw-r--r-- | client/src/app/+my-library/my-videos/my-videos.component.scss | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/client/src/app/+my-library/my-videos/my-videos.component.html b/client/src/app/+my-library/my-videos/my-videos.component.html index b0d49efa2..e9f436378 100644 --- a/client/src/app/+my-library/my-videos/my-videos.component.html +++ b/client/src/app/+my-library/my-videos/my-videos.component.html | |||
@@ -26,7 +26,7 @@ | |||
26 | <span class="sr-only" i18n>Clear filters</span> | 26 | <span class="sr-only" i18n>Clear filters</span> |
27 | </div> | 27 | </div> |
28 | 28 | ||
29 | <div class="peertube-select-container peertube-select-button ml-2"> | 29 | <div class="peertube-select-container peertube-select-button"> |
30 | <select [(ngModel)]="sort" (ngModelChange)="onChangeSortColumn()" class="form-control"> | 30 | <select [(ngModel)]="sort" (ngModelChange)="onChangeSortColumn()" class="form-control"> |
31 | <option value="undefined" disabled>Sort by</option> | 31 | <option value="undefined" disabled>Sort by</option> |
32 | <option value="-publishedAt" i18n>Last published first</option> | 32 | <option value="-publishedAt" i18n>Last published first</option> |
diff --git a/client/src/app/+my-library/my-videos/my-videos.component.scss b/client/src/app/+my-library/my-videos/my-videos.component.scss index b10f8b0ab..aaf21126b 100644 --- a/client/src/app/+my-library/my-videos/my-videos.component.scss +++ b/client/src/app/+my-library/my-videos/my-videos.component.scss | |||
@@ -7,6 +7,7 @@ input[type=text] { | |||
7 | 7 | ||
8 | .peertube-select-container { | 8 | .peertube-select-container { |
9 | @include peertube-select-container(auto); | 9 | @include peertube-select-container(auto); |
10 | margin-left: 0.5rem; | ||
10 | } | 11 | } |
11 | 12 | ||
12 | h1 { | 13 | h1 { |
@@ -67,7 +68,11 @@ my-edit-button { | |||
67 | flex-direction: column; | 68 | flex-direction: column; |
68 | 69 | ||
69 | input[type=text] { | 70 | input[type=text] { |
70 | width: 100% !important; | 71 | width: 100%; |
72 | margin-bottom: 12px; | ||
73 | } | ||
74 | .peertube-select-container { | ||
75 | margin-left: 0; | ||
71 | } | 76 | } |
72 | } | 77 | } |
73 | 78 | ||