Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -53,8 +53,14 @@ st.set_page_config(
|
|
53 |
# Custom CSS to make the progress bar larger
|
54 |
st.markdown("""
|
55 |
<style>
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
}
|
59 |
</style>
|
60 |
""", unsafe_allow_html=True)
|
|
|
53 |
# Custom CSS to make the progress bar larger
|
54 |
st.markdown("""
|
55 |
<style>
|
56 |
+
/* Target the container of the progress bar and increase its height */
|
57 |
+
.stProgress > div {
|
58 |
+
height: 50px; /* Or any other height you prefer */
|
59 |
+
}
|
60 |
+
|
61 |
+
/* Optionally, if you want to increase the height of the filled portion as well */
|
62 |
+
.stProgress > div > div {
|
63 |
+
height: 50px; /* This should match the container height for a consistent look */
|
64 |
}
|
65 |
</style>
|
66 |
""", unsafe_allow_html=True)
|