seawolf2357 commited on
Commit
84237bf
·
verified ·
1 Parent(s): d456dc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -85,9 +85,14 @@ with gr.Blocks(css_paths="app.css") as demo:
85
  <h1>MOUSE Coder: WEB</h2>
86
  </div>
87
  """)
88
-
89
  input = antd.InputTextarea(
90
- size="large", allow_clear=True, placeholder="Please enter what kind of application you want")
 
 
 
 
 
 
91
  btn = antd.Button("send", type="primary", size="large")
92
  clear_btn = antd.Button("clear history", type="default", size="large")
93
 
 
85
  <h1>MOUSE Coder: WEB</h2>
86
  </div>
87
  """)
 
88
  input = antd.InputTextarea(
89
+ size="large",
90
+ allow_clear=True,
91
+ placeholder="Please enter what kind of application you want",
92
+ rows=8, # 행 수 증가
93
+ style={"height": "200px", "resize": "vertical"} # 높이 설정 및 수직 리사이즈 가능
94
+ )
95
+
96
  btn = antd.Button("send", type="primary", size="large")
97
  clear_btn = antd.Button("clear history", type="default", size="large")
98