Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -375,18 +375,9 @@ def main():
|
|
375 |
""", unsafe_allow_html=True,
|
376 |
)
|
377 |
|
378 |
-
# Custom CSS to add space before the form
|
379 |
-
st.markdown(
|
380 |
-
"""
|
381 |
-
<style>
|
382 |
-
.form-spacing {
|
383 |
-
margin-top: 50px; /* Adjust the space as required */
|
384 |
-
}
|
385 |
-
</style>
|
386 |
-
""", unsafe_allow_html=True
|
387 |
-
)
|
388 |
|
389 |
-
|
|
|
390 |
|
391 |
|
392 |
col1, col2 = st.columns([6, 1])
|
|
|
375 |
""", unsafe_allow_html=True,
|
376 |
)
|
377 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
|
379 |
+
|
380 |
+
with st.form("input_form"):
|
381 |
|
382 |
|
383 |
col1, col2 = st.columns([6, 1])
|