Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -146,11 +146,12 @@ demo_css = """
|
|
146 |
}
|
147 |
#custom_row {
|
148 |
width: 70% !important; /* İstediğiniz yüksekliği girin */
|
|
|
149 |
}
|
150 |
|
151 |
/* Mobil ekranlar için özel düzenleme */
|
152 |
@media only screen and (max-width: 600px) {
|
153 |
-
.
|
154 |
flex-wrap: nowrap !important;
|
155 |
}
|
156 |
}
|
@@ -177,7 +178,7 @@ with gr.Blocks(css=demo_css, theme=theme) as demo:
|
|
177 |
chatbot = gr.Chatbot(label='Trek Asistanı', elem_id="chatbot")
|
178 |
|
179 |
# Row içinde, metin kutusu ve buton arasındaki boşluğu sıfırlıyoruz.
|
180 |
-
with gr.Row(elem_id="
|
181 |
inputs = gr.Textbox(
|
182 |
placeholder="Buraya yazın",
|
183 |
show_label=False,
|
|
|
146 |
}
|
147 |
#custom_row {
|
148 |
width: 70% !important; /* İstediğiniz yüksekliği girin */
|
149 |
+
flex-wrap: nowrap !important;
|
150 |
}
|
151 |
|
152 |
/* Mobil ekranlar için özel düzenleme */
|
153 |
@media only screen and (max-width: 600px) {
|
154 |
+
.custom_row { /* Eğer Row'a bu sınıf atanmışsa */
|
155 |
flex-wrap: nowrap !important;
|
156 |
}
|
157 |
}
|
|
|
178 |
chatbot = gr.Chatbot(label='Trek Asistanı', elem_id="chatbot")
|
179 |
|
180 |
# Row içinde, metin kutusu ve buton arasındaki boşluğu sıfırlıyoruz.
|
181 |
+
with gr.Row(elem_id="custom_row"):
|
182 |
inputs = gr.Textbox(
|
183 |
placeholder="Buraya yazın",
|
184 |
show_label=False,
|