Spaces:
Sleeping
Sleeping
make mobile friendly
Browse files
app.py
CHANGED
@@ -37,21 +37,26 @@ st.set_page_config(layout="wide")
|
|
37 |
|
38 |
|
39 |
# Logo
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
# Title
|
47 |
# make title in center
|
48 |
-
with cols[1]:
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
|
56 |
file_url = st.query_params.get("file_url", None)
|
57 |
|
|
|
37 |
|
38 |
|
39 |
# Logo
|
40 |
+
# Logo
|
41 |
+
st.write(
|
42 |
+
f"""
|
43 |
+
<div style="display: flex; justify-content: space-between; align-items: center;">
|
44 |
+
<img src="https://huggingface.co/spaces/SustainabilityLabIITGN/NDVI_PERG/resolve/main/Final_IITGN-Logo-symmetric-Color.png" style="width: 10%; margin-right: auto;">
|
45 |
+
<img src="https://huggingface.co/spaces/SustainabilityLabIITGN/NDVI_PERG/resolve/main/IFS.jpg" style="width: 10%; margin-left: auto;">
|
46 |
+
</div>
|
47 |
+
""",
|
48 |
+
unsafe_allow_html=True,
|
49 |
+
)
|
50 |
|
51 |
# Title
|
52 |
# make title in center
|
53 |
+
# with cols[1]:
|
54 |
+
st.markdown(
|
55 |
+
f"""
|
56 |
+
<h1 style="text-align: center;">KML Viewer</h1>
|
57 |
+
""",
|
58 |
+
unsafe_allow_html=True,
|
59 |
+
)
|
60 |
|
61 |
file_url = st.query_params.get("file_url", None)
|
62 |
|