Put drag icon back

This commit is contained in:
missionfloyd 2023-04-05 08:57:44 -06:00
parent 8af2fe1e87
commit 3536a7c8d1
2 changed files with 2 additions and 1 deletions

View File

@ -415,6 +415,7 @@ export class ComfyUI {
this.menuContainer = $el("div.comfy-menu", { parent: document.body }, [
$el("div.drag-handle", { style: { overflow: "hidden", position: "relative", width: "100%", cursor: "default" } }, [
$el("span.drag-handle"),
$el("span", { $: (q) => (this.queueSize = q) }),
$el("button.comfy-settings-btn", { textContent: "⚙️", onclick: () => this.settings.show() }),
]),

View File

@ -102,7 +102,7 @@ body {
background-color: #353535;
font-family: sans-serif;
padding: 10px;
border-radius: 8px;
border-radius: 0 8px 8px 8px;
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}