diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-04-19 19:09:47 +0200 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-04-19 19:09:47 +0200 |
commit | eda97b980a64fcbe1454c83dad3c0afecc7a804a (patch) | |
tree | 5291a69957bd8b37725f153e589c45a11dadf43c /src/frontend | |
parent | c910b46ee7867bf2f465e1c2707e2b9864c267d3 (diff) |
feat: amend media queue metadata container width
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/tubo/components/play_queue.cljs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/tubo/components/play_queue.cljs b/src/frontend/tubo/components/play_queue.cljs index c2dbe7a..056c37c 100644 --- a/src/frontend/tubo/components/play_queue.cljs +++ b/src/frontend/tubo/components/play_queue.cljs @@ -82,12 +82,12 @@ (for [[i item] (map-indexed vector media-queue)] ^{:key i} [play-queue-item item media-queue-pos i bookmarks])] [:div.flex.flex-col.py-4.shrink-0.px-5 - [:div.flex.flex-col.w-full.py-2 - [:a.text-md.line-clamp-1 + [:div.flex.flex-col.py-2 + [:a.text-md.line-clamp-1.w-fit {:href (rfe/href :tubo.routes/stream nil {:url url}) :title name} name] - [:a.text-sm.pt-2.text-neutral-600.dark:text-neutral-300.line-clamp-1 + [:a.text-sm.pt-2.text-neutral-600.dark:text-neutral-300.line-clamp-1.w-fit {:href (rfe/href :tubo.routes/channel nil {:url uploader-url}) :title uploader-name} uploader-name]] |