Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,9 +25,6 @@ custom_css = """
|
|
25 |
width: 25%;
|
26 |
float: left;
|
27 |
}
|
28 |
-
.feedback-output {
|
29 |
-
margin-right: 50%;
|
30 |
-
}
|
31 |
</style>
|
32 |
"""
|
33 |
|
@@ -72,7 +69,7 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
|
|
72 |
|
73 |
# Create a row for feedback output
|
74 |
with gr.Row():
|
75 |
-
feedback_output = gr.Textbox(label="Feedback Status", interactive=False,
|
76 |
|
77 |
# Buttons
|
78 |
with gr.Row():
|
|
|
25 |
width: 25%;
|
26 |
float: left;
|
27 |
}
|
|
|
|
|
|
|
28 |
</style>
|
29 |
"""
|
30 |
|
|
|
69 |
|
70 |
# Create a row for feedback output
|
71 |
with gr.Row():
|
72 |
+
feedback_output = gr.Textbox(label="Feedback Status", interactive=False, scale=2) # Add class to feedback output
|
73 |
|
74 |
# Buttons
|
75 |
with gr.Row():
|