Spaces:
Sleeping
Sleeping
fifa19_streamlit
Browse files
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
|
|
|
|
|
|
|
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])
|