mgokg commited on
Commit
385b443
·
verified ·
1 Parent(s): 2bb4560

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,7 +15,7 @@ def main():
15
  # Sidebar mit Buttons
16
  with st.sidebar:
17
  st.header("Bereich wählen")
18
- st.markdown("""
19
  <style>
20
  .custom-button {
21
  background-color: #4CAF50;
@@ -32,7 +32,7 @@ def main():
32
  </style>
33
  <button class="custom-button">Bamberg</button>
34
  """, unsafe_allow_html=True)
35
- bamberg = st.button("Bamberg1")
36
  coburg = st.button("Coburg")
37
  bad_kissingen = st.button("Kissingen")
38
 
 
15
  # Sidebar mit Buttons
16
  with st.sidebar:
17
  st.header("Bereich wählen")
18
+ bamberg = st.markdown("""
19
  <style>
20
  .custom-button {
21
  background-color: #4CAF50;
 
32
  </style>
33
  <button class="custom-button">Bamberg</button>
34
  """, unsafe_allow_html=True)
35
+ bamberg1 = st.button("Bamberg1")
36
  coburg = st.button("Coburg")
37
  bad_kissingen = st.button("Kissingen")
38