Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
|
@@ -3,18 +3,17 @@ import streamlit as st
|
|
| 3 |
import altair as alt
|
| 4 |
|
| 5 |
st.set_page_config(page_title="Building Inventory Analysis", layout="wide")
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
#
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
# )
|
| 18 |
|
| 19 |
st.markdown(
|
| 20 |
"""
|
|
|
|
| 3 |
import altair as alt
|
| 4 |
|
| 5 |
st.set_page_config(page_title="Building Inventory Analysis", layout="wide")
|
| 6 |
+
import streamlit.components.v1 as components
|
| 7 |
+
|
| 8 |
+
components.html(
|
| 9 |
+
"""
|
| 10 |
+
<script>
|
| 11 |
+
document.querySelector('iframe').style.height = '100vh';
|
| 12 |
+
</script>
|
| 13 |
+
""",
|
| 14 |
+
height=0, # Prevents extra space for the component
|
| 15 |
+
)
|
| 16 |
+
|
|
|
|
| 17 |
|
| 18 |
st.markdown(
|
| 19 |
"""
|