Remove menu drag handle

This commit is contained in:
missionfloyd 2023-04-04 22:03:22 -06:00
parent 255dac25ba
commit a595c56872
2 changed files with 2 additions and 3 deletions

View File

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

View File

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