Spaces:
Sleeping
Sleeping
Jonas Wiesli
commited on
Commit
•
99163bf
1
Parent(s):
64a8d23
fixed solving box layout
Browse files
app.py
CHANGED
@@ -60,10 +60,10 @@ with gr.Blocks() as iface:
|
|
60 |
characterImage = gr.Label(label="")
|
61 |
i += 1
|
62 |
|
63 |
-
with gr.Row(visible=
|
64 |
i = 0
|
65 |
while i < len(roles):
|
66 |
-
with gr.Column():
|
67 |
finishButton = gr.Button(roles[i])
|
68 |
i += 1
|
69 |
|
|
|
60 |
characterImage = gr.Label(label="")
|
61 |
i += 1
|
62 |
|
63 |
+
with gr.Row(visible=False) as solvingBox:
|
64 |
i = 0
|
65 |
while i < len(roles):
|
66 |
+
with gr.Column(scale=1):
|
67 |
finishButton = gr.Button(roles[i])
|
68 |
i += 1
|
69 |
|