diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-19 03:14:44 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-19 03:14:44 +0100 |
commit | 85025c45b6c796b81c284ba8d197b6f523786ad3 (patch) | |
tree | 38e958eeb939bcfbaf1a3e75856b1ac546054c18 /src | |
parent | 1ce3553e61fb30979a23e23170019a9780d7ca17 (diff) |
feat: remove unneeded queue styles
Diffstat (limited to 'src')
-rw-r--r-- | src/frontend/tubo/queue/views.cljs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frontend/tubo/queue/views.cljs b/src/frontend/tubo/queue/views.cljs index 3c0c21f..2763041 100644 --- a/src/frontend/tubo/queue/views.cljs +++ b/src/frontend/tubo/queue/views.cljs @@ -153,13 +153,12 @@ color (-> stream :service-id utils/get-service-color)] - [:div.fixed.flex.flex-col.items-center.min-w-full.w-full.z-10.backdrop-blur + [:div.fixed.flex.flex-col.items-center.min-w-full.w-full.backdrop-blur {:class ["dark:bg-neutral-900/90" "bg-neutral-100/90" "min-h-[calc(100dvh-56px)]" "h-[calc(100dvh-56px)]" (when-not show-queue "invisible") (if show-queue "opacity-1" "opacity-0")]} - [layout/focus-overlay #(rf/dispatch [:queue/show false]) show-queue true] - [:div.z-20.w-full.flex.flex-col.flex-auto.h-full.lg:pt-5 + [:div.w-full.flex.flex-col.flex-auto.h-full.lg:pt-5 {:class ["lg:w-4/5" "xl:w-3/5"]} [:div.flex.flex-col.overflow-y-auto.flex-auto.gap-y-1 (for [[i item] (map-indexed vector queue)] |