diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-10 08:40:34 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-10 08:40:34 +0100 |
commit | ff739ca165a4cbaaec7ac5890ff61666725c9599 (patch) | |
tree | 326f9c5f79a2adf185b5a85a7642dd6c9a46f388 /src | |
parent | 12f726c62f51407f20dd09b38fa02633d530295c (diff) |
feat: make modals overlay other content
Diffstat (limited to 'src')
-rw-r--r-- | src/frontend/tubo/modals/views.cljs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/tubo/modals/views.cljs b/src/frontend/tubo/modals/views.cljs index de54cbc..69ccd85 100644 --- a/src/frontend/tubo/modals/views.cljs +++ b/src/frontend/tubo/modals/views.cljs @@ -18,7 +18,7 @@ (defn modal-panel [{:keys [child show?]}] - [:div.fixed.flex.flex-col.items-center.justify-center.w-full.z-20.top-0 + [:div.fixed.flex.flex-col.items-center.justify-center.w-full.z-30.top-0 {:class ["min-h-[100dvh]" "h-[100dvh]"]} [layout/focus-overlay #(rf/dispatch [:modals/close]) show?] [:div.flex.items-center.justify-center.flex-auto.shrink-0.w-full.max-h-full.p-5 |