diff --git a/src/app.scss b/src/app.scss
index f16b743..1aafeca 100644
--- a/src/app.scss
+++ b/src/app.scss
@@ -147,12 +147,6 @@ select option.is-default {
width: fit-content;
}
-/* Show the edit button on hover of the user message */
-.user-message:hover .editbutton {
- /* TODO: add when ready: display: block !important; */
- text-decoration: none !important;
-}
-
/* Swap the border on user messages to the other side */
.user-message>.message-body {
border-width: 0 4px 0 0 !important;
@@ -631,4 +625,16 @@ aside.menu.main-menu .menu-expanse {
.modal-card .notification {
margin-left: -.5em;
margin-right: -.5em;
-}
\ No newline at end of file
+}
+
+.message-footer {
+ padding: $message-header-padding;
+}
+
+.modal .message-body {
+ overflow-y: auto;max-height: calc(100vh - 150px);
+}
+
+.modal .modal-content.nomax {
+ max-height: none;
+}
diff --git a/src/lib/Chat.svelte b/src/lib/Chat.svelte
index 3e056ff..d69d8ac 100644
--- a/src/lib/Chat.svelte
+++ b/src/lib/Chat.svelte
@@ -476,6 +476,7 @@
title: 'Enter Name for Chat',
label: 'Name',
value: chat.name,
+ class: 'is-info',
onSubmit: (value) => {
chat.name = (value || '').trim() || chat.name
saveChatStore()
diff --git a/src/lib/PromptInput.svelte b/src/lib/PromptInput.svelte
index e6f76b8..e08e632 100644
--- a/src/lib/PromptInput.svelte
+++ b/src/lib/PromptInput.svelte
@@ -7,7 +7,6 @@
import { onMount } from 'svelte'
import { v4 as uuidv4 } from 'uuid'
- // provided by