mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-04-06 15:13:38 +00:00
4 lines
353 B
JavaScript
4 lines
353 B
JavaScript
document.getElementById("main").childNodes[0].style = "max-width: 800px; margin-left: auto; margin-right: auto";
|
|
document.getElementById("extensions").style.setProperty("max-width", "800px");
|
|
document.getElementById("extensions").style.setProperty("margin-left", "auto");
|
|
document.getElementById("extensions").style.setProperty("margin-right", "auto");
|