Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -872,7 +872,9 @@ table_html_data = styled_table._repr_html_()
|
|
872 |
# Wrap the table in a Div, ensuring it is centered
|
873 |
table_div_data = Div(
|
874 |
NotStr(table_html_data),
|
875 |
-
style="margin-left: auto; width: 90%; max-width: 100%; text-align: center; align: center; overflow-x: auto;"
|
|
|
|
|
876 |
)
|
877 |
|
878 |
|
|
|
872 |
# Wrap the table in a Div, ensuring it is centered
|
873 |
table_div_data = Div(
|
874 |
NotStr(table_html_data),
|
875 |
+
# style="margin-left: auto; width: 90%; max-width: 100%; text-align: center; align: center; overflow-x: auto;"
|
876 |
+
style="display: flex; justify-content: center; align-items: center; width: 100%; max-width: 100%; height: auto; overflow-x: auto;"
|
877 |
+
|
878 |
)
|
879 |
|
880 |
|