fschwartzer commited on
Commit
a268f6c
1 Parent(s): 3910b68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -14,6 +14,17 @@ title_html = """
14
  </style>
15
  <span style='color: red; font-size: 30px;'>PREVISÕES DE RECEITAS</span>
16
  """
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  with st.sidebar:
19
  st.markdown(title_html, unsafe_allow_html=True)
 
14
  </style>
15
  <span style='color: red; font-size: 30px;'>PREVISÕES DE RECEITAS</span>
16
  """
17
+ # Set a fixed width for the sidebar
18
+ st.markdown(
19
+ """
20
+ <style>
21
+ .sidebar .sidebar-content {
22
+ width: 300px;
23
+ }
24
+ </style>
25
+ """,
26
+ unsafe_allow_html=True
27
+ )
28
 
29
  with st.sidebar:
30
  st.markdown(title_html, unsafe_allow_html=True)