Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,8 @@ custom_css = f"""
|
|
36 |
position: sticky !important;
|
37 |
top: 0 !important;
|
38 |
z-index: 9999 !important; /* Very high z-index */
|
39 |
-
background-color:
|
|
|
40 |
/* Add a subtle shadow to make it feel more distinct when content scrolls under */
|
41 |
/* box-shadow: 0 2px 4px -1px rgba(0,0,0,0.1); */
|
42 |
}}
|
@@ -44,6 +45,8 @@ custom_css = f"""
|
|
44 |
/* Adding padding to the main content area to prevent overlap with the sticky header */
|
45 |
{MAIN_CONTENT_SELECTOR} {{
|
46 |
padding-top: {HEADER_HEIGHT} !important;
|
|
|
|
|
47 |
}}
|
48 |
|
49 |
/* Optional: If your app is set to wide mode and the header isn't spanning full width */
|
|
|
36 |
position: sticky !important;
|
37 |
top: 0 !important;
|
38 |
z-index: 9999 !important; /* Very high z-index */
|
39 |
+
background-color: red !important;
|
40 |
+
#background-color: #0f1116 !important; /* Or your app's header background color */
|
41 |
/* Add a subtle shadow to make it feel more distinct when content scrolls under */
|
42 |
/* box-shadow: 0 2px 4px -1px rgba(0,0,0,0.1); */
|
43 |
}}
|
|
|
45 |
/* Adding padding to the main content area to prevent overlap with the sticky header */
|
46 |
{MAIN_CONTENT_SELECTOR} {{
|
47 |
padding-top: {HEADER_HEIGHT} !important;
|
48 |
+
border-style: solid;
|
49 |
+
border-color: red;
|
50 |
}}
|
51 |
|
52 |
/* Optional: If your app is set to wide mode and the header isn't spanning full width */
|