mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 18:02:58 +08:00
fix: button size
This commit is contained in:
parent
7a841dce1d
commit
8b39c4f000
@ -30,7 +30,7 @@ except:
|
|||||||
print(f"[WARN] ComfyUI-Manager: Your ComfyUI version is outdated. Please update to the latest version.")
|
print(f"[WARN] ComfyUI-Manager: Your ComfyUI version is outdated. Please update to the latest version.")
|
||||||
|
|
||||||
|
|
||||||
version = [2, 16]
|
version = [2, 16, 1]
|
||||||
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
||||||
print(f"### Loading: ComfyUI-Manager ({version_str})")
|
print(f"### Loading: ComfyUI-Manager ({version_str})")
|
||||||
|
|
||||||
|
|||||||
@ -269,6 +269,7 @@ export class SnapshotManager extends ComfyDialog {
|
|||||||
save_button.onclick = () => { save_current_snapshot(); }
|
save_button.onclick = () => { save_current_snapshot(); }
|
||||||
save_button.style.display = "inline-block";
|
save_button.style.display = "inline-block";
|
||||||
save_button.style.horizontalAlign = "right";
|
save_button.style.horizontalAlign = "right";
|
||||||
|
save_button.style.width = "170px";
|
||||||
|
|
||||||
this.message_box = $el('div', {id:'custom-download-message'}, [$el('br'), '']);
|
this.message_box = $el('div', {id:'custom-download-message'}, [$el('br'), '']);
|
||||||
this.message_box.style.height = '60px';
|
this.message_box.style.height = '60px';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user