Update app.py
Browse files
app.py
CHANGED
@@ -145,6 +145,10 @@ demo_css = """
|
|
145 |
margin: 10px 0 0 2px; /* Sol boşluk kaldırıldı */
|
146 |
}
|
147 |
|
|
|
|
|
|
|
|
|
148 |
|
149 |
"""
|
150 |
|
@@ -172,7 +176,7 @@ with gr.Blocks(css=demo_css, theme=theme) as demo:
|
|
172 |
placeholder="Buraya yazın",
|
173 |
show_label=False,
|
174 |
container=True,
|
175 |
-
|
176 |
)
|
177 |
# Butonu, genişlemesini engelleyen sabit kapsayıcı içinde yerleştiriyoruz.
|
178 |
with gr.Column(elem_classes="fixed_button_container"):
|
|
|
145 |
margin: 10px 0 0 2px; /* Sol boşluk kaldırıldı */
|
146 |
}
|
147 |
|
148 |
+
/* Textbox içindeki textarea genişliğini ayarlıyoruz */
|
149 |
+
#input_text textarea {
|
150 |
+
width: 400px !important; /* İstediğiniz genişliği buraya girin */
|
151 |
+
}
|
152 |
|
153 |
"""
|
154 |
|
|
|
176 |
placeholder="Buraya yazın",
|
177 |
show_label=False,
|
178 |
container=True,
|
179 |
+
elem_id="input_text"
|
180 |
)
|
181 |
# Butonu, genişlemesini engelleyen sabit kapsayıcı içinde yerleştiriyoruz.
|
182 |
with gr.Column(elem_classes="fixed_button_container"):
|