AIdeaText commited on
Commit
48f776b
1 Parent(s): d71aa6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -18,7 +18,8 @@ def logged_in_interface():
18
  col1, col2, col3, col4, col5 = st.columns([4, 1, 3, 1, 2])
19
 
20
  with col1:
21
- st.write(f"Bienvenido, {st.session_state.username}")
 
22
 
23
  with col3:
24
  selected_lang = st.selectbox("Idioma", list(languages.keys()), key="language_selector")
 
18
  col1, col2, col3, col4, col5 = st.columns([4, 1, 3, 1, 2])
19
 
20
  with col1:
21
+ #st.write(f"Bienvenido, {st.session_state.username}")
22
+ st.markdown(f"<h2 style='margin-bottom: 0;'>Bienvenido, {st.session_state.username}</h2>", unsafe_allow_html=True)
23
 
24
  with col3:
25
  selected_lang = st.selectbox("Idioma", list(languages.keys()), key="language_selector")