openfree commited on
Commit
9c81a9e
·
verified ·
1 Parent(s): 03591ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -997,14 +997,14 @@ with gr.Blocks(css_paths=["app.css"], theme=theme) as demo:
997
  template_btn = antd.Button("🎮템플릿", type="default")
998
 
999
  # ── (2) 입력창 ──
1000
- with antd.Flex(vertical=True, gap="middle", wrap=True, elem_classes="panel input-panel", style={"flex": "1"}):
1001
- # 입력 영역
 
1002
  input_text = antd.InputTextarea(
1003
  size="large",
1004
  allow_clear=True,
1005
  placeholder=random.choice(DEMO_LIST)['description'],
1006
- max_length=100000, # 입력 최대 길이 증가
1007
- style={"flex": "1"}
1008
  )
1009
  gr.HTML('<div class="help-text">💡 원하는 게임의 설명을 입력하세요. 예: "테트리스 게임 제작해줘."</div>')
1010
 
 
997
  template_btn = antd.Button("🎮템플릿", type="default")
998
 
999
  # ── (2) 입력창 ──
1000
+ # style 속성 제거하고 elem_classes 사용
1001
+ with antd.Flex(vertical=True, gap="middle", wrap=True, elem_classes="panel input-panel"):
1002
+ # 입력 영역 - InputTextarea는 style 매개변수 사용 가능함
1003
  input_text = antd.InputTextarea(
1004
  size="large",
1005
  allow_clear=True,
1006
  placeholder=random.choice(DEMO_LIST)['description'],
1007
+ max_length=100000 # 입력 최대 길이 증가
 
1008
  )
1009
  gr.HTML('<div class="help-text">💡 원하는 게임의 설명을 입력하세요. 예: "테트리스 게임 제작해줘."</div>')
1010