Spaces:
Running
Running
Updated interface
Browse files- app.py +3 -3
- css/style.css +1 -1
app.py
CHANGED
@@ -20,19 +20,19 @@ with iface:
|
|
20 |
error = gr.HTML()
|
21 |
|
22 |
with gr.Row(variant='panel'):
|
23 |
-
with gr.Column(
|
24 |
out_infinitive = gr.Textbox(
|
25 |
label="Infinitive",
|
26 |
max_lines=1,
|
27 |
placeholder="The verb in the 'infinitive' will be shown here..."
|
28 |
)
|
29 |
-
with gr.Column(
|
30 |
out_simple_past = gr.Textbox(
|
31 |
label="Simple Past",
|
32 |
max_lines=1,
|
33 |
placeholder="The verb in the 'past' will be shown here..."
|
34 |
)
|
35 |
-
with gr.Column(
|
36 |
out_past_participle = gr.Textbox(
|
37 |
label="Past Participle",
|
38 |
max_lines=1,
|
|
|
20 |
error = gr.HTML()
|
21 |
|
22 |
with gr.Row(variant='panel'):
|
23 |
+
with gr.Column():
|
24 |
out_infinitive = gr.Textbox(
|
25 |
label="Infinitive",
|
26 |
max_lines=1,
|
27 |
placeholder="The verb in the 'infinitive' will be shown here..."
|
28 |
)
|
29 |
+
with gr.Column():
|
30 |
out_simple_past = gr.Textbox(
|
31 |
label="Simple Past",
|
32 |
max_lines=1,
|
33 |
placeholder="The verb in the 'past' will be shown here..."
|
34 |
)
|
35 |
+
with gr.Column():
|
36 |
out_past_participle = gr.Textbox(
|
37 |
label="Past Participle",
|
38 |
max_lines=1,
|
css/style.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
.container {
|
2 |
-
max-width:
|
3 |
margin: auto;
|
4 |
}
|
5 |
|
|
|
1 |
.container {
|
2 |
+
max-width: 80%;
|
3 |
margin: auto;
|
4 |
}
|
5 |
|