Spaces:
Runtime error
Runtime error
File size: 863 Bytes
26998f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import streamlit as st
def cust_footer():
footer = """
<style>
footer {
visibility: hidden !important;
}
.divfooter {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding: 10px;
border-top: 2px solid grey;
background: white;
}
@media (min-width: 768px) {
.divfooter {
justify-content: center;
padding-left: 10%;
}
}
</style>
<div class="divfooter">
<p style="margin-bottom: 0px">© 2023 Odia Generative AI</p>
</div>
"""
st.markdown(footer, unsafe_allow_html=True) |