Update app.py
Browse files
app.py
CHANGED
@@ -741,6 +741,8 @@ with gr.Blocks(css_paths="app.css",theme=theme) as demo:
|
|
741 |
# ๋ฉ์ธ ์ปจํ
์ธ ๋ฅผ ์ํ Row
|
742 |
with antd.Row(gutter=[32, 12]) as layout:
|
743 |
# ์ข์ธก ํจ๋
|
|
|
|
|
744 |
with antd.Col(span=24, md=8):
|
745 |
with antd.Flex(vertical=True, gap="middle", wrap=True):
|
746 |
header = gr.HTML(f"""
|
@@ -756,19 +758,14 @@ with gr.Blocks(css_paths="app.css",theme=theme) as demo:
|
|
756 |
placeholder=random.choice(DEMO_LIST)['description']
|
757 |
)
|
758 |
|
759 |
-
|
760 |
-
with antd.Flex(
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
with antd.Flex(gap="small", justify="space-between"):
|
767 |
-
btn = antd.Button("Send", type="primary", size="large")
|
768 |
-
execute_btn = antd.Button("Code ์คํ", type="default", size="large")
|
769 |
-
clear_btn = antd.Button("Clear", type="default", size="large")
|
770 |
|
771 |
-
|
772 |
with antd.Col(span=24, md=16):
|
773 |
with ms.Div(elem_classes="right_panel"):
|
774 |
with antd.Flex(gap="small", elem_classes="setting-buttons"):
|
|
|
741 |
# ๋ฉ์ธ ์ปจํ
์ธ ๋ฅผ ์ํ Row
|
742 |
with antd.Row(gutter=[32, 12]) as layout:
|
743 |
# ์ข์ธก ํจ๋
|
744 |
+
|
745 |
+
# ์ข์ธก ํจ๋ ๋ถ๋ถ์ ๋ค์๊ณผ ๊ฐ์ด ์์
|
746 |
with antd.Col(span=24, md=8):
|
747 |
with antd.Flex(vertical=True, gap="middle", wrap=True):
|
748 |
header = gr.HTML(f"""
|
|
|
758 |
placeholder=random.choice(DEMO_LIST)['description']
|
759 |
)
|
760 |
|
761 |
+
# ๋ฒํผ๋ค์ ๊ฐ๋ก๋ก ๋ฐฐ์นํ๊ธฐ ์ํ Flex ์ปจํ
์ด๋ (ํ ๋ฒ๋ง ์ถ๋ ฅ)
|
762 |
+
with antd.Flex(gap="small", justify="space-between"):
|
763 |
+
btn = antd.Button("Send", type="primary", size="large")
|
764 |
+
execute_btn = antd.Button("Code ์คํ", type="default", size="large")
|
765 |
+
clear_btn = antd.Button("Clear", type="default", size="large")
|
766 |
+
|
|
|
|
|
|
|
|
|
|
|
767 |
|
768 |
+
|
769 |
with antd.Col(span=24, md=16):
|
770 |
with ms.Div(elem_classes="right_panel"):
|
771 |
with antd.Flex(gap="small", elem_classes="setting-buttons"):
|