From b6e17a0f09042d4eb1c8a4e02a484f2d52b0c633 Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Mon, 22 Aug 2022 12:00:30 +0200 Subject: [PATCH] :bug: Fix Libraries & Templates carousel misalingments --- frontend/src/app/main/ui/dashboard.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/dashboard.cljs b/frontend/src/app/main/ui/dashboard.cljs index 2b9660027..879d54824 100644 --- a/frontend/src/app/main/ui/dashboard.cljs +++ b/frontend/src/app/main/ui/dashboard.cljs @@ -80,6 +80,7 @@ card-width 275 num-cards (count templates) + container-size (* (+ 2 num-cards) card-width) ;; We need space for num-cards plus the libraries&templates link more-cards (> (+ @card-offset (* (+ 1 num-cards) card-width)) content-width) content-ref (mf/use-ref) @@ -148,7 +149,7 @@ [:span (tr "dashboard.libraries-and-templates")] [:span.icon (if collapsed i/arrow-up i/arrow-down)]]] [:div.content {:ref content-ref - :style {:left @card-offset}} + :style {:left @card-offset :width (str container-size "px")}} (for [num-item (range (count templates)) :let [item (nth templates num-item)]] [:div.card-container {:id (str/concat "card-container-" num-item) :key (:id item)