Spaces:
Sleeping
Sleeping
Updating area for better use
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ The editor supports syntax highlighting and autocompletion.
|
|
| 25 |
""")
|
| 26 |
|
| 27 |
# Create main layout with three columns
|
| 28 |
-
col1, col2= st.columns([
|
| 29 |
|
| 30 |
with col1:
|
| 31 |
# Code Editor Section
|
|
@@ -73,7 +73,7 @@ export_data = export_session(
|
|
| 73 |
)
|
| 74 |
|
| 75 |
# Export buttons in a more compact layout
|
| 76 |
-
col1_export, col2_export= st.columns([
|
| 77 |
|
| 78 |
with col1_export:
|
| 79 |
st.download_button(
|
|
|
|
| 25 |
""")
|
| 26 |
|
| 27 |
# Create main layout with three columns
|
| 28 |
+
col1, col2= st.columns([1, 1])
|
| 29 |
|
| 30 |
with col1:
|
| 31 |
# Code Editor Section
|
|
|
|
| 73 |
)
|
| 74 |
|
| 75 |
# Export buttons in a more compact layout
|
| 76 |
+
col1_export, col2_export= st.columns([5, 4])
|
| 77 |
|
| 78 |
with col1_export:
|
| 79 |
st.download_button(
|