LPX
commited on
Commit
ยท
9b0be11
1
Parent(s):
e0b4991
๐ style(css): update CSS classes and welcome icon to improve UI layout
Browse files- Update CSS to manage additional grid overflow behavior for better visual consistency
- Change the welcome icon to a new URL to enhance branding
- Adjust `.ms-gr-ant-welcome-icon` height to ensure proper alignment and visual appeal
app.py
CHANGED
@@ -284,12 +284,12 @@ def predict_image_with_html(img, confidence_threshold, augment_methods, rotate_d
|
|
284 |
html_content = generate_results_html(results)
|
285 |
return img_pil, forensics_images, html_content
|
286 |
|
287 |
-
with gr.Blocks(css="#post-gallery { overflow: hidden !important;} .grid-wrap{ overflow-y: hidden !important;}") as iface:
|
288 |
with ms.Application() as app:
|
289 |
with antd.ConfigProvider():
|
290 |
antdx.Welcome(
|
291 |
icon=
|
292 |
-
"https://
|
293 |
title="Welcome to Project OpenSight",
|
294 |
description=
|
295 |
"The OpenSight aims to be an open-source SOTA generated image detection model. This HF Space is not only an introduction but a educational playground for the public to evaluate and challenge current open source models."
|
|
|
284 |
html_content = generate_results_html(results)
|
285 |
return img_pil, forensics_images, html_content
|
286 |
|
287 |
+
with gr.Blocks(css="#post-gallery { overflow: hidden !important;} .grid-wrap{ overflow-y: hidden !important;} .ms-gr-ant-welcome-icon{ height:unset !important;}") as iface:
|
288 |
with ms.Application() as app:
|
289 |
with antd.ConfigProvider():
|
290 |
antdx.Welcome(
|
291 |
icon=
|
292 |
+
"https://cdn-avatars.huggingface.co/v1/production/uploads/639daf827270667011153fbc/WpeSFhuB81DY-1TjNUmV_.png",
|
293 |
title="Welcome to Project OpenSight",
|
294 |
description=
|
295 |
"The OpenSight aims to be an open-source SOTA generated image detection model. This HF Space is not only an introduction but a educational playground for the public to evaluate and challenge current open source models."
|