make header bar thin for gradio

This commit is contained in:
Thomas Dhome-Casanova
2025-02-04 17:40:30 -08:00
parent bc4931baba
commit 75585a6528
2 changed files with 1 additions and 1 deletions

BIN
imgs/header_bar_thin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

View File

@@ -261,7 +261,7 @@ def get_header_image_base64():
try:
# Get the absolute path to the image relative to this script
script_dir = Path(__file__).parent
image_path = script_dir.parent.parent / "imgs" / "header_bar.png"
image_path = script_dir.parent.parent / "imgs" / "header_bar_thin.png"
with open(image_path, "rb") as image_file:
encoded_string = base64.b64encode(image_file.read()).decode()