From: Claromes Date: Mon, 24 Jun 2024 21:15:06 +0000 (-0300) Subject: web app - set header anchor to false X-Git-Url: https://git.claromes.com/?a=commitdiff_plain;h=16f9997a8e2e2b87932ca061bf5731cd65d1d588;p=waybacktweets.git web app - set header anchor to false --- diff --git a/app/app.py b/app/app.py index f47c3e4..cd86fae 100644 --- a/app/app.py +++ b/app/app.py @@ -141,7 +141,7 @@ st.write( ) st.write( - "This application uses the Wayback Tweets Python package, which can be used either as a module or as a standalone command-line tool. [Read the documentation](https://claromes.github.io/waybacktweets) for more information.." # noqa: E501 + "This application uses the Wayback Tweets Python package, which can be used either as a module or as a standalone command-line tool. [Read the documentation](https://claromes.github.io/waybacktweets) for more information." # noqa: E501 ) st.write( @@ -248,7 +248,7 @@ if query or st.session_state.count: # -- HTML -- # - st.header("HTML", divider="gray") + st.header("HTML", divider="gray", anchor=False) st.write( f"Visualize tweets more efficiently through `iframes`. Download the @{st.session_state.current_username}'s archived tweets in HTML." # noqa: E501 ) @@ -269,7 +269,7 @@ if query or st.session_state.count: # -- CSV -- # - st.header("CSV", divider="gray") + st.header("CSV", divider="gray", anchor=False) st.write( "Check the data returned in the dataframe below and download the file." ) @@ -292,7 +292,7 @@ if query or st.session_state.count: # -- JSON -- # - st.header("JSON", divider="gray") + st.header("JSON", divider="gray", anchor=False) st.write( "Check the data returned in JSON format below and download the file." )