abdiharyadi commited on
Commit
0c9a11b
·
1 Parent(s): c54c0f2

style: make outputs responsive in mobile by changing min width

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -153,14 +153,22 @@ with gr.Blocks() as demo:
153
 
154
  with gr.Row():
155
  src_amr_graph_output = gr.Textbox(
156
- label="Graf AMR sumber (Source AMR graph)"
 
 
 
 
 
157
  )
158
- triplets_output = gr.Textbox(label="Triplet (Triplets)")
159
 
160
  with gr.Row():
161
- style_words_output = gr.Textbox(label="Kata bergaya (Style words)")
 
 
 
162
  tgt_amr_graph_output = gr.Textbox(
163
  label="Graf AMR target (Target AMR graph)"
 
164
  )
165
 
166
  result_output = gr.Textbox(label="Hasil (Result)")
 
153
 
154
  with gr.Row():
155
  src_amr_graph_output = gr.Textbox(
156
+ label="Graf AMR sumber (Source AMR graph)",
157
+ min_width=320,
158
+ )
159
+ triplets_output = gr.Textbox(
160
+ label="Triplet (Triplets)",
161
+ min_width=320,
162
  )
 
163
 
164
  with gr.Row():
165
+ style_words_output = gr.Textbox(
166
+ label="Kata bergaya (Style words)",
167
+ min_width=320,
168
+ )
169
  tgt_amr_graph_output = gr.Textbox(
170
  label="Graf AMR target (Target AMR graph)"
171
+ min_width=320,
172
  )
173
 
174
  result_output = gr.Textbox(label="Hasil (Result)")