JeCabrera commited on
Commit
874d72e
·
verified ·
1 Parent(s): 677db18

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -212,6 +212,20 @@ st.markdown("""
212
  </style>
213
  """, unsafe_allow_html=True)
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  # Crear columnas
216
  col1, col2 = st.columns([1, 2])
217
 
 
212
  </style>
213
  """, unsafe_allow_html=True)
214
 
215
+ # Añadir CSS personalizado para los campos de entrada
216
+ st.markdown("""
217
+ <style>
218
+ textarea {
219
+ font-size: 18px !important;
220
+ width: 100% !important;
221
+ height: auto !important;
222
+ min-height: 50px;
223
+ max-height: 200px;
224
+ overflow: auto;
225
+ }
226
+ </style>
227
+ """, unsafe_allow_html=True)
228
+
229
  # Crear columnas
230
  col1, col2 = st.columns([1, 2])
231