dcrey7 commited on
Commit
60104db
·
1 Parent(s): 93dfed1

fifa19_streamlit

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -119,7 +119,10 @@ def final_pred(num_of_players,b=[],c=[],d=[]):
119
  return z
120
 
121
  def main():
122
- st.title("FIFA 19 Player Recommender 🎮⚽")
 
 
 
123
 
124
  # Create two columns - one for instructions and one for results
125
  left_col, right_col = st.columns([1, 1])
 
119
  return z
120
 
121
  def main():
122
+ # Replace st.title with custom markdown for smaller title
123
+ st.markdown("""
124
+ <h1 style='font-size: 24px; margin-bottom: 20px;'>FIFA 19 Player Recommender 🎮⚽</h1>
125
+ """, unsafe_allow_html=True)
126
 
127
  # Create two columns - one for instructions and one for results
128
  left_col, right_col = st.columns([1, 1])