nanom commited on
Commit
83f081c
1 Parent(s): c2dfb81

Updated interface

Browse files
Files changed (2) hide show
  1. app.py +3 -3
  2. 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(variant='panel'):
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(variant='panel'):
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(variant='panel'):
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: 85%;
3
  margin: auto;
4
  }
5
 
 
1
  .container {
2
+ max-width: 80%;
3
  margin: auto;
4
  }
5