Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -346,6 +346,9 @@ def main():
|
|
346 |
st.metric("Age", default_stats['age'])
|
347 |
st.metric("Height (cm)", default_stats['player_height'])
|
348 |
st.metric("Weight (kg)", default_stats['player_weight'])
|
|
|
|
|
|
|
349 |
|
350 |
with col2:
|
351 |
# Display team logo
|
|
|
346 |
st.metric("Age", default_stats['age'])
|
347 |
st.metric("Height (cm)", default_stats['player_height'])
|
348 |
st.metric("Weight (kg)", default_stats['player_weight'])
|
349 |
+
st.markdown(f"<div style='color: white;'>Age: {default_stats['age']}</div>", unsafe_allow_html=True)
|
350 |
+
st.markdown(f"<div style='color: white;'>Height (cm): {default_stats['player_height']}</div>", unsafe_allow_html=True)
|
351 |
+
st.markdown(f"<div style='color: white;'>Weight (kg): {default_stats['player_weight']}</div>", unsafe_allow_html=True)
|
352 |
|
353 |
with col2:
|
354 |
# Display team logo
|