Using something like st.info('###### test text')
, text isn’t vertically centred. This happens both in and out of columns.
Putting it inside markdown like st.markdown(st.info(###### test text))
didn’t work.
This works for any number of #s and only goes back to normal without it.
Also, it seems that when using st.info('# test text')
, it will go out of bounds. I don’t imagine this to be a practical problem though so just mentioning it for sake of completion.
And this isn’t a problem when st.info
is used inside st.markdown
when there is a list:
st.markdown(
st.info(
"""
###### **Title**
* ###### one
* ###### two
"""
)
)