Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | @@ -2,6 +2,7 @@ import streamlit as st | |
| 2 |  | 
| 3 | 
             
            st.set_page_config(layout="wide")
         | 
| 4 |  | 
|  | |
| 5 | 
             
            st.markdown(
         | 
| 6 | 
             
                """
         | 
| 7 | 
             
                <style>
         | 
| @@ -29,10 +30,16 @@ st.markdown( | |
| 29 | 
             
                    margin: 0;
         | 
| 30 | 
             
                    height: 100vh;
         | 
| 31 | 
             
                }
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
| 32 | 
             
                </style>
         | 
| 33 | 
             
                """,
         | 
| 34 | 
             
                unsafe_allow_html=True,
         | 
| 35 | 
             
            )
         | 
|  | |
| 36 | 
             
            # Embed the external Streamlit webpage
         | 
| 37 | 
             
            st.markdown(
         | 
| 38 | 
             
                """
         | 
|  | |
| 2 |  | 
| 3 | 
             
            st.set_page_config(layout="wide")
         | 
| 4 |  | 
| 5 | 
            +
             | 
| 6 | 
             
            st.markdown(
         | 
| 7 | 
             
                """
         | 
| 8 | 
             
                <style>
         | 
|  | |
| 30 | 
             
                    margin: 0;
         | 
| 31 | 
             
                    height: 100vh;
         | 
| 32 | 
             
                }
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                /* Hide Streamlit header and footer */
         | 
| 35 | 
            +
                header, footer {
         | 
| 36 | 
            +
                    display: none;
         | 
| 37 | 
            +
                }
         | 
| 38 | 
             
                </style>
         | 
| 39 | 
             
                """,
         | 
| 40 | 
             
                unsafe_allow_html=True,
         | 
| 41 | 
             
            )
         | 
| 42 | 
            +
             | 
| 43 | 
             
            # Embed the external Streamlit webpage
         | 
| 44 | 
             
            st.markdown(
         | 
| 45 | 
             
                """
         | 
