Text inside st.info() is not vertically centered when using markdown

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 :stuck_out_tongue: so just mentioning it for sake of completion.

image

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

        """
    )
)