cyberandy commited on
Commit
4eeaf06
·
verified ·
1 Parent(s): 368db67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
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
- .stProgressBar > div {
57
- height: 40px; /* Example: Adjust the height of the progress bar */
 
 
 
 
 
 
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)