Update app.py
Browse files
app.py
CHANGED
@@ -89,9 +89,9 @@ with gr.Blocks(css_paths="app.css") as demo:
|
|
89 |
size="large",
|
90 |
allow_clear=True,
|
91 |
placeholder="Please enter what kind of application you want",
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
|
96 |
btn = antd.Button("send", type="primary", size="large")
|
97 |
clear_btn = antd.Button("clear history", type="default", size="large")
|
|
|
89 |
size="large",
|
90 |
allow_clear=True,
|
91 |
placeholder="Please enter what kind of application you want",
|
92 |
+
style={"height": "200px", "min-height": "200px", "resize": "vertical"} # 높이 설정 및 수직 리사이즈 가능
|
93 |
+
)
|
94 |
+
|
95 |
|
96 |
btn = antd.Button("send", type="primary", size="large")
|
97 |
clear_btn = antd.Button("clear history", type="default", size="large")
|