I am not encountering a bug, so I’ve skipped some of the “What version are you running?” etc.
Bottom line: I wonder if anyone has suggestions or found examples of a more aesthetically pleasing “As Of: {date}” in their app.
Context: I’m using columns, headers, etc., as follows (code below) to display to the user the “As Of” date for the latest data the app is analyzing. However, in my opinion, it’s not very aesthetically appealing. If anyone has seen any good examples of displaying that information, I’d love to see it! I haven’t found any good examples of this personally.
col1, col2, col3 = st.columns(3)
with col1:
st.markdown("### As of: ")
with col2:
st.header(last_date_in_data_variable)
with col3:
st.write(’ ')
…looks like…