Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,13 +83,13 @@ st.markdown(
|
|
| 83 |
}
|
| 84 |
.logo-container img {
|
| 85 |
width: 50%; /* Adjust this to control the width, e.g., 50% of container width */
|
| 86 |
-
max-width:
|
| 87 |
}
|
| 88 |
</style>
|
| 89 |
<div class="logo-container">
|
| 90 |
-
<img src="data:image/png
|
| 91 |
</div>
|
| 92 |
-
""".format(img_data=st.image(logo_image, output_format="PNG")
|
| 93 |
unsafe_allow_html=True
|
| 94 |
)
|
| 95 |
# st.image(logo_image, wi)
|
|
|
|
| 83 |
}
|
| 84 |
.logo-container img {
|
| 85 |
width: 50%; /* Adjust this to control the width, e.g., 50% of container width */
|
| 86 |
+
max-width: 200px; /* Set a maximum width */
|
| 87 |
}
|
| 88 |
</style>
|
| 89 |
<div class="logo-container">
|
| 90 |
+
<img src="data:image/png,{img_data}" alt="FactBench Leaderboard Logo">
|
| 91 |
</div>
|
| 92 |
+
""".format(img_data=st.image(logo_image, output_format="PNG")),
|
| 93 |
unsafe_allow_html=True
|
| 94 |
)
|
| 95 |
# st.image(logo_image, wi)
|