Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def logged_in_interface():
|
|
15 |
# Crear un contenedor para la barra superior
|
16 |
with st.container():
|
17 |
# Usar más columnas para un mejor control del espacio
|
18 |
-
col1, col2, col3, col4, col5 = st.columns([1, 1,
|
19 |
|
20 |
with col1:
|
21 |
st.markdown(f"<h3 style='margin-bottom: 0;'>Bienvenido, {st.session_state.username}</h3>", unsafe_allow_html=True)
|
|
|
15 |
# Crear un contenedor para la barra superior
|
16 |
with st.container():
|
17 |
# Usar más columnas para un mejor control del espacio
|
18 |
+
col1, col2, col3, col4, col5 = st.columns([1, 1, 1, 1, 1])
|
19 |
|
20 |
with col1:
|
21 |
st.markdown(f"<h3 style='margin-bottom: 0;'>Bienvenido, {st.session_state.username}</h3>", unsafe_allow_html=True)
|