Update app.py
Browse files
app.py
CHANGED
@@ -144,6 +144,9 @@ demo_css = """
|
|
144 |
padding: 0px;
|
145 |
margin: 0px 0 0 2px; /* Sol boşluk kaldırıldı */
|
146 |
}
|
|
|
|
|
|
|
147 |
|
148 |
|
149 |
|
@@ -168,7 +171,7 @@ with gr.Blocks(css=demo_css, theme=theme) as demo:
|
|
168 |
chatbot = gr.Chatbot(label='Trek Asistanı', elem_id="chatbot")
|
169 |
|
170 |
# Row içinde, metin kutusu ve buton arasındaki boşluğu sıfırlıyoruz.
|
171 |
-
with gr.Row():
|
172 |
inputs = gr.Textbox(
|
173 |
placeholder="Buraya yazın",
|
174 |
show_label=False,
|
|
|
144 |
padding: 0px;
|
145 |
margin: 0px 0 0 2px; /* Sol boşluk kaldırıldı */
|
146 |
}
|
147 |
+
#custom_row {
|
148 |
+
width: 1000px !important; /* İstediğiniz yüksekliği girin */
|
149 |
+
}
|
150 |
|
151 |
|
152 |
|
|
|
171 |
chatbot = gr.Chatbot(label='Trek Asistanı', elem_id="chatbot")
|
172 |
|
173 |
# Row içinde, metin kutusu ve buton arasındaki boşluğu sıfırlıyoruz.
|
174 |
+
with gr.Row(elem_id="custom_row"):
|
175 |
inputs = gr.Textbox(
|
176 |
placeholder="Buraya yazın",
|
177 |
show_label=False,
|