aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-videos/my-videos.component.html
diff options
context:
space:
mode:
authoraschaap <8865084+aschaap@users.noreply.github.com>2021-04-08 04:44:43 -0400
committerGitHub <noreply@github.com>2021-04-08 10:44:43 +0200
commit9a8c02c9da7b538b3d726016c59a527fa3811ab0 (patch)
treec73bb36446c7c1f08ce6c27e14102fa9c0655141 /client/src/app/+my-library/my-videos/my-videos.component.html
parent20373985c0d83f672ece5c061f4c5e96942f6243 (diff)
downloadPeerTube-9a8c02c9da7b538b3d726016c59a527fa3811ab0.tar.gz
PeerTube-9a8c02c9da7b538b3d726016c59a527fa3811ab0.tar.zst
PeerTube-9a8c02c9da7b538b3d726016c59a527fa3811ab0.zip
correct inconsistency in spacing "Sort By" for narrow screens (#3938)
Mimicked the approach used in other tabs under "My Library": * Adding bottom margin to search field to keep distance from "Sort By" * Fixing extra left margin on "Sort By" for narrow screens * Removed the `ml-2` class so that `!important` is no longer needed * Removed unnecessary `!important` from account video search field width
Diffstat (limited to 'client/src/app/+my-library/my-videos/my-videos.component.html')
-rw-r--r--client/src/app/+my-library/my-videos/my-videos.component.html2
1 files changed, 1 insertions, 1 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>