From 1470b908950775bca3375081b8b91207a5c69751 Mon Sep 17 00:00:00 2001 From: Sai Karthik Date: Sat, 2 Jul 2022 22:23:15 +0530 Subject: [PATCH 1/3] refactor: align video info items responsively --- src/components/WatchVideo.vue | 86 +++++++++++++++++++++-------------- 1 file changed, 52 insertions(+), 34 deletions(-) diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index ee7215ca..08eb0ad7 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -33,13 +33,17 @@ @seek="navigate" /> +
- -
- - - -
+
+ +
+ + | + +
+ +
- +
@@ -83,17 +71,6 @@ }} - - - -
+
+
+ + + + + + + + + + + + + + + + + LBRY + + + + + +
+

From b1158469aa249703b16b90d7497d9f54beec26be Mon Sep 17 00:00:00 2001 From: Sai Karthik Date: Sun, 3 Jul 2022 15:23:09 +0530 Subject: [PATCH 2/3] fix: don't truncate chapter titles in desktop view --- src/components/ChaptersBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ChaptersBar.vue b/src/components/ChaptersBar.vue index 9dd09083..1b0f74c2 100644 --- a/src/components/ChaptersBar.vue +++ b/src/components/ChaptersBar.vue @@ -14,7 +14,7 @@
- +
From c8d09772e91aa4d43942666e8a0087eac245e705 Mon Sep 17 00:00:00 2001 From: Sai Karthik Date: Tue, 5 Jul 2022 11:38:50 +0530 Subject: [PATCH 3/3] fix: handle some shorts thumbnails misaligned due to length > 60 sec --- src/components/VideoItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VideoItem.vue b/src/components/VideoItem.vue index 90e27236..326a9a7b 100644 --- a/src/components/VideoItem.vue +++ b/src/components/VideoItem.vue @@ -176,7 +176,7 @@ export default { }, computed: { short() { - return this.video.duration > 0 && this.video.duration <= 60; + return this.video.duration > 0 && this.video.duration <= 61; }, }, components: { PlaylistAddModal },