Update app.py
Browse files
app.py
CHANGED
@@ -102,7 +102,7 @@ st.markdown(
|
|
102 |
}}
|
103 |
.logo-container img {{
|
104 |
width: 50%; /* Adjust this to control the width, e.g., 50% of container width */
|
105 |
-
max-width:
|
106 |
background-color: transparent;
|
107 |
}}
|
108 |
</style>
|
@@ -152,8 +152,15 @@ df.fillna('-', inplace=True)
|
|
152 |
df['original_order'] = df.groupby('tier').cumcount()
|
153 |
|
154 |
# Create tabs
|
155 |
-
|
156 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
# Tab 1: Leaderboard
|
159 |
with tab1:
|
|
|
102 |
}}
|
103 |
.logo-container img {{
|
104 |
width: 50%; /* Adjust this to control the width, e.g., 50% of container width */
|
105 |
+
max-width: 500px; /* Set a maximum width */
|
106 |
background-color: transparent;
|
107 |
}}
|
108 |
</style>
|
|
|
152 |
df['original_order'] = df.groupby('tier').cumcount()
|
153 |
|
154 |
# Create tabs
|
155 |
+
st.markdown("""
|
156 |
+
<style>
|
157 |
+
div[data-testid="stHorizontalTab"] > div > div {
|
158 |
+
font-size: 24px;
|
159 |
+
}
|
160 |
+
</style>
|
161 |
+
""", unsafe_allow_html=True)
|
162 |
+
|
163 |
+
tab1, tab2, tab3 = st.tabs(["Leaderboard", "Benchmark Details", "Submit your models"]))
|
164 |
|
165 |
# Tab 1: Leaderboard
|
166 |
with tab1:
|