diff --git a/static/avatars/mara.png b/static/avatars/mara.png index 58a1277..878b778 100644 Binary files a/static/avatars/mara.png and b/static/avatars/mara.png differ diff --git a/templates/chat.html b/templates/chat.html index bcf0543..da738ef 100644 --- a/templates/chat.html +++ b/templates/chat.html @@ -83,8 +83,8 @@ {% endif %} {% for h in history %} {% if '[PORTRAIT]' in h.content %} -
- +
+
🖼️ Neues Portrait generiert
{% else %} @@ -285,9 +285,10 @@ if (portraitMatch) { div.className = 'msg msg-bot'; div.style.padding = '0'; - div.style.overflow = 'hidden'; + div.style.overflow = 'visible'; + div.style.maxWidth = '400px'; div.innerHTML = ` - +
🖼️ Neues Portrait generiert
`; } else { @@ -360,9 +361,10 @@ const portraitMsg = document.createElement('div'); portraitMsg.className = 'msg msg-bot'; portraitMsg.style.padding = '0'; - portraitMsg.style.overflow = 'hidden'; + portraitMsg.style.overflow = 'visible'; + portraitMsg.style.maxWidth = '400px'; portraitMsg.innerHTML = ` - +
🖼️ Neues Portrait generiert
`; chat.appendChild(portraitMsg);