diff --git a/assets/web/index.html b/assets/web/index.html
index 27685d1..db6b233 100644
--- a/assets/web/index.html
+++ b/assets/web/index.html
@@ -62,10 +62,6 @@
${m.text}
`
- msg.oncontextmenu = () => {
- document.getElementById('msg-context-menu').style.display = 'flex';
- return false;
- }
let history = document.getElementById('chat-history');
// this is to force update everytime we get a duplicate msg to allow msg editing (yay)
let exists = Array.from(history.children).filter(e => e.style.order == m.id)[0];
@@ -141,6 +137,7 @@
background-color:#0f0f2f;
}
.chat-message {
+
background-color: #ffffd6;
color: #000000;
border-width: 2px;
@@ -188,10 +185,5 @@
-