Skip to content

Commit

Permalink
CSS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oobabooga committed Mar 15, 2023
1 parent c1959c2 commit 87b84d2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions css/chat.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
document.getElementById("main").childNodes[0].style = "max-width: 800px; margin-left: auto; margin-right: auto";
document.getElementById("extensions").style = "max-width: 800px; margin-left: auto; margin-right: auto";
document.getElementById("main").style.setProperty("max-width", "800px");
document.getElementById("main").style.setProperty("margin-left", "auto");
document.getElementById("main").style.setProperty("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");

0 comments on commit 87b84d2

Please sign in to comment.