Spaces:
Sleeping
Sleeping
GMARTINEZMILLA
commited on
Commit
•
633bb6b
1
Parent(s):
d84930f
feat: updated website
Browse files
app.py
CHANGED
@@ -24,11 +24,11 @@ if st.get_option("theme.base") == "dark":
|
|
24 |
primary_color = '#00FF00' # for positive delta
|
25 |
negative_color = '#FF0000' # for negative delta
|
26 |
else:
|
27 |
-
background_color = "
|
28 |
-
text_color = "black"
|
29 |
-
metric_box_color = "#
|
30 |
-
sidebar_color = "#
|
31 |
-
plot_bgcolor = "
|
32 |
primary_color = '#228B22' # for positive delta in light mode
|
33 |
negative_color = '#8B0000' # for negative delta in light mode
|
34 |
|
@@ -206,7 +206,7 @@ if page == "Summary":
|
|
206 |
fig_cluster.update_layout(
|
207 |
scene=dict(aspectratio=dict(x=1, y=1, z=0.8)), # Adjusted aspect ratio for better balance
|
208 |
margin=dict(t=10, b=10, l=10, r=10), # Tighten margins further
|
209 |
-
height=
|
210 |
)
|
211 |
st.plotly_chart(fig_cluster, use_container_width=True)
|
212 |
|
|
|
24 |
primary_color = '#00FF00' # for positive delta
|
25 |
negative_color = '#FF0000' # for negative delta
|
26 |
else:
|
27 |
+
background_color = "#f4f4f4"
|
28 |
+
text_color = "#black"
|
29 |
+
metric_box_color = "#4f4f4f"
|
30 |
+
sidebar_color = "#4f4f4f"
|
31 |
+
plot_bgcolor = "#f4f4f4"
|
32 |
primary_color = '#228B22' # for positive delta in light mode
|
33 |
negative_color = '#8B0000' # for negative delta in light mode
|
34 |
|
|
|
206 |
fig_cluster.update_layout(
|
207 |
scene=dict(aspectratio=dict(x=1, y=1, z=0.8)), # Adjusted aspect ratio for better balance
|
208 |
margin=dict(t=10, b=10, l=10, r=10), # Tighten margins further
|
209 |
+
height=600, # Slightly increased height for better visibility
|
210 |
)
|
211 |
st.plotly_chart(fig_cluster, use_container_width=True)
|
212 |
|