Hi.
I deployed an app on the cloud, that includes a “buy me a coffee” button. I used the code snipped below for the button, however it is overlapping some of the text shown on the app itself. Is there any other way to include a “buy me a coffee” button on a streamlit app?
App: https://snipdna.streamlit.app/
Source code: GitHub - andyolivers/llm-snp-dna
from streamlit.components.v1 import html
button = """
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="adof6qkj3h" data-color="#FFDD00" data-emoji="" data-font="Cookie" data-text="Buy me a coffee" data-outline-color="#000000" data-font-color="#000000" data-coffee-color="#ffffff" ></script>
"""
html(button, height=70, width=220)
st.markdown(
"""
<style>
iframe[width="220"] {
position: fixed;
bottom: 60px;
right: 40px;
}
</style>
""",
unsafe_allow_html=True,
)