Avoid the scroll of tab name

Hi to all,
In a “st.tabs” I have a tab page with 3 containers (see below), when i click the refesh button the function fills the containers with some data, and this work well.
But when I scroll to see the data, the tab page name scool up and I can’t see it.
How can I keep the tab name?

Thanks

    with tab_info:
        def refresh_info():
              ....
              ....
              ....

        tab_info.header("Info varie")
        tab_info.button("Refesh Data", on_click=refresh_info)
        tab_info.write(datetime.now())

        container1 = tab_info.container(border=True)
        container2 = tab_info.container(border=True)
        container3 = tab_info.container(border=True)

        container1.header("Info Robots")
        container2.header("Pendig Missions")
        container3.header("Missioni e Posizioni")

Take a look at the height parameter to st.container.