Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -650,12 +650,12 @@ with gr.Blocks(css_paths=["app.css"], theme=theme) as demo:
|
|
650 |
allow_clear=True,
|
651 |
placeholder=random.choice(DEMO_LIST)['description'],
|
652 |
max_length=100000,
|
653 |
-
style="height:
|
654 |
)
|
655 |
gr.HTML('<div class="help-text">💡 원하는 게임의 설명을 입력하세요. 예: "테트리스 게임 제작해줘."</div>')
|
656 |
|
657 |
# 가장 기본적인 방식의 배포 결과 표시
|
658 |
-
deploy_result = gr.Markdown("", label="배포 결과", elem_classes="deploy-result")
|
659 |
|
660 |
# 더 이상 자바스크립트 삽입 없음
|
661 |
js_trigger = gr.HTML(elem_id="js-trigger", visible=False)
|
|
|
650 |
allow_clear=True,
|
651 |
placeholder=random.choice(DEMO_LIST)['description'],
|
652 |
max_length=100000,
|
653 |
+
style="height: 730px; max-height: 730px;" # 높이 조정
|
654 |
)
|
655 |
gr.HTML('<div class="help-text">💡 원하는 게임의 설명을 입력하세요. 예: "테트리스 게임 제작해줘."</div>')
|
656 |
|
657 |
# 가장 기본적인 방식의 배포 결과 표시
|
658 |
+
deploy_result = gr.Markdown("", label="배포 결과", elem_classes="deploy-result", elem_id="deploy-result")
|
659 |
|
660 |
# 더 이상 자바스크립트 삽입 없음
|
661 |
js_trigger = gr.HTML(elem_id="js-trigger", visible=False)
|