From 05a721fae5ae0a8aee31be8c75485c2695951938 Mon Sep 17 00:00:00 2001 From: anish-work Date: Tue, 13 Aug 2024 01:59:42 +0530 Subject: [PATCH] fix: sticky submit bar zIndex issue --- daras_ai_v2/base.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/daras_ai_v2/base.py b/daras_ai_v2/base.py index 8e3610a28..82887cd1a 100644 --- a/daras_ai_v2/base.py +++ b/daras_ai_v2/base.py @@ -1308,9 +1308,7 @@ def get_credits_click_url(self): return "/account/" def get_submit_container_props(self): - return dict( - className="position-sticky bottom-0 bg-white", style=dict(zIndex=100) - ) + return dict(className="position-sticky bottom-0 bg-white") def render_submit_button(self, key="--submit-1"): with gui.div(**self.get_submit_container_props()):