INNER CODE UNIT · Python
css
neuml/tldrstory · src/python/tldrstory/app.py:20
def css():
"""
Sets application wide css
"""
style = """
<style>
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
"""
# Apply style
st.markdown(style, unsafe_allow_html=True)