Spaces:
Running
Running
Matias Stager
commited on
Commit
·
dcb9e02
1
Parent(s):
75f8b3a
Footer Update
Browse files
app.py
CHANGED
@@ -40,4 +40,10 @@ if st.session_state['generated']:
|
|
40 |
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')
|
41 |
|
42 |
# # with st.expander("Mensajes"):
|
43 |
-
# st.write(messages)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')
|
41 |
|
42 |
# # with st.expander("Mensajes"):
|
43 |
+
# st.write(messages)
|
44 |
+
|
45 |
+
hide_footer_style = """
|
46 |
+
<style>
|
47 |
+
.main footer {visibility: hidden;}
|
48 |
+
"""
|
49 |
+
st.markdown(hide_footer_style, unsafe_allow_html=True)
|