Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ from st_aggrid.shared import JsCode
|
|
6 |
from download import download_button
|
7 |
from st_aggrid import GridUpdateMode, DataReturnMode
|
8 |
|
9 |
-
# Wide mode since we want screen real estate for wide CSV files
|
10 |
-
st.set_page_config(layout="wide")
|
11 |
|
12 |
# Style
|
13 |
def _max_width_():
|
@@ -23,8 +23,7 @@ def _max_width_():
|
|
23 |
unsafe_allow_html=True,
|
24 |
)
|
25 |
|
26 |
-
#
|
27 |
-
st.set_page_config(page_icon="📝", page_title="📝CSV Data Analyzer📊")
|
28 |
col1, col2, col3 = st.columns([1,6,1])
|
29 |
with col1:
|
30 |
st.image("https://cdnb.artstation.com/p/assets/images/images/054/910/875/large/aaron-wacker-cyberpunk-computer-brain-design.jpg?1665656558",width=80,)
|
|
|
6 |
from download import download_button
|
7 |
from st_aggrid import GridUpdateMode, DataReturnMode
|
8 |
|
9 |
+
# Page config is set once with icon title and display style. Wide mode since we want screen real estate for wide CSV files
|
10 |
+
st.set_page_config(page_icon="📝", page_title="📝CSV Data Analyzer📊", layout="wide")
|
11 |
|
12 |
# Style
|
13 |
def _max_width_():
|
|
|
23 |
unsafe_allow_html=True,
|
24 |
)
|
25 |
|
26 |
+
# Title Bar with Images and Icons
|
|
|
27 |
col1, col2, col3 = st.columns([1,6,1])
|
28 |
with col1:
|
29 |
st.image("https://cdnb.artstation.com/p/assets/images/images/054/910/875/large/aaron-wacker-cyberpunk-computer-brain-design.jpg?1665656558",width=80,)
|