diff --git a/omnitool/gradio/app.py b/omnitool/gradio/app.py index a6846be..1ad28d2 100644 --- a/omnitool/gradio/app.py +++ b/omnitool/gradio/app.py @@ -259,7 +259,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_thin.png" + image_path = script_dir.parent.parent / "imgs" / "header_bar_small.png" with open(image_path, "rb") as image_file: encoded_string = base64.b64encode(image_file.read()).decode() @@ -285,7 +285,7 @@ with gr.Blocks(theme=gr.themes.Default()) as demo: header_image = get_header_image_base64() if header_image: - gr.HTML(f'OmniTool Header') + gr.HTML(f'OmniTool Header', elem_classes="no-padding") gr.HTML('

OmniTool

') else: gr.Markdown("# OmniTool")