Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files
app.py
CHANGED
|
@@ -607,8 +607,8 @@ with gr.Blocks(title="AIBDM 2026 Workshop App") as demo:
|
|
| 607 |
|
| 608 |
run_log = gr.Textbox(
|
| 609 |
label="Execution Log",
|
| 610 |
-
lines=
|
| 611 |
-
max_lines=
|
| 612 |
interactive=False,
|
| 613 |
)
|
| 614 |
|
|
|
|
| 607 |
|
| 608 |
run_log = gr.Textbox(
|
| 609 |
label="Execution Log",
|
| 610 |
+
lines=18,
|
| 611 |
+
max_lines=30,
|
| 612 |
interactive=False,
|
| 613 |
)
|
| 614 |
|
style.css
CHANGED
|
@@ -41,7 +41,7 @@ body::after {
|
|
| 41 |
background-repeat: no-repeat !important;
|
| 42 |
background-position: bottom center !important;
|
| 43 |
pointer-events: none !important;
|
| 44 |
-
z-index:
|
| 45 |
}
|
| 46 |
|
| 47 |
/* --- Main container --- */
|
|
@@ -50,7 +50,7 @@ body::after {
|
|
| 50 |
width: 94vw !important;
|
| 51 |
margin: 0 auto !important;
|
| 52 |
padding-top: 220px !important;
|
| 53 |
-
padding-bottom:
|
| 54 |
background: transparent !important;
|
| 55 |
}
|
| 56 |
|
|
|
|
| 41 |
background-repeat: no-repeat !important;
|
| 42 |
background-position: bottom center !important;
|
| 43 |
pointer-events: none !important;
|
| 44 |
+
z-index: -1 !important;
|
| 45 |
}
|
| 46 |
|
| 47 |
/* --- Main container --- */
|
|
|
|
| 50 |
width: 94vw !important;
|
| 51 |
margin: 0 auto !important;
|
| 52 |
padding-top: 220px !important;
|
| 53 |
+
padding-bottom: 150px !important;
|
| 54 |
background: transparent !important;
|
| 55 |
}
|
| 56 |
|