nanom commited on
Commit
65816ec
โ€ข
1 Parent(s): a50007e

Minors fixes

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. app.py +2 -2
  3. css/style.css +1 -1
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  title: ๐Ÿ‡บ๐Ÿ‡ธ ๐Ÿ‡ฌ๐Ÿ‡ง 2Passive Voice
3
- emoji:
4
  colorFrom: red
5
  colorTo: gray
6
  sdk: gradio
 
1
  ---
2
  title: ๐Ÿ‡บ๐Ÿ‡ธ ๐Ÿ‡ฌ๐Ÿ‡ง 2Passive Voice
3
+ emoji: ๐Ÿ—ซ
4
  colorFrom: red
5
  colorTo: gray
6
  sdk: gradio
app.py CHANGED
@@ -9,13 +9,13 @@ with iface:
9
  with gr.Row():
10
  with gr.Column():
11
  in_sentence = gr.Textbox(
12
- label = "Enter an active sentence",
13
  max_lines=2,
14
  lines=1,
15
  placeholder = "Write here the sentence without contractions...",
16
  )
17
  btn_act2pas = gr.Button(
18
- value = "Convert to passive sentence!"
19
  )
20
  str_out = gr.Markdown(
21
  label = "Output in string format",
 
9
  with gr.Row():
10
  with gr.Column():
11
  in_sentence = gr.Textbox(
12
+ label = "Enter a sentence in active voice",
13
  max_lines=2,
14
  lines=1,
15
  placeholder = "Write here the sentence without contractions...",
16
  )
17
  btn_act2pas = gr.Button(
18
+ value = "Convert to passive voice!"
19
  )
20
  str_out = gr.Markdown(
21
  label = "Output in string format",
css/style.css CHANGED
@@ -1,5 +1,5 @@
1
  .container {
2
- max-width: 85%;
3
  margin: auto;
4
  }
5
 
 
1
  .container {
2
+ max-width: 90%;
3
  margin: auto;
4
  }
5