openfree commited on
Commit
d0a783e
·
verified ·
1 Parent(s): 029ed82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -1841,13 +1841,18 @@ def create_main_interface():
1841
  </h1>
1842
  </div>
1843
  """)
1844
-
1845
- # 입력 영역
1846
  input = antd.InputTextarea(
1847
  size="large",
1848
  allow_clear=True,
1849
- placeholder=random.choice(DEMO_LIST)['description']
 
 
 
 
 
1850
  )
 
1851
 
1852
  # 버튼 그룹
1853
  with antd.Flex(gap="small", justify="space-between"):
 
1841
  </h1>
1842
  </div>
1843
  """)
1844
+ # 입력 영역
 
1845
  input = antd.InputTextarea(
1846
  size="large",
1847
  allow_clear=True,
1848
+ placeholder=random.choice(DEMO_LIST)['description'],
1849
+ style={
1850
+ "height": "300px",
1851
+ "minHeight": "300px",
1852
+ "maxHeight": "300px"
1853
+ }
1854
  )
1855
+
1856
 
1857
  # 버튼 그룹
1858
  with antd.Flex(gap="small", justify="space-between"):