JeCabrera commited on
Commit
f6962e3
·
verified ·
1 Parent(s): 7e55b2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -212,6 +212,18 @@ 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
+ input {
219
+ font-size: 18px;
220
+ width: 100% !important;
221
+ height: auto !important;
222
+ min-width: 300px;
223
+ }
224
+ </style>
225
+ """, unsafe_allow_html=True)
226
+
227
  # Crear columnas
228
  col1, col2 = st.columns([1, 2])
229