diff --git a/Components/ChatArea.svelte b/Components/ChatArea.svelte index ba96b86..4331616 100644 --- a/Components/ChatArea.svelte +++ b/Components/ChatArea.svelte @@ -228,6 +228,7 @@ .message-container { display: flex; + text-align: left; margin: 0; } @@ -270,6 +271,7 @@ } .streaming-content { + justify-content: left; min-height: 1em; /* Ensure the element exists for binding */ } diff --git a/Components/ChatInput.svelte b/Components/ChatInput.svelte index e945e05..87a911e 100644 --- a/Components/ChatInput.svelte +++ b/Components/ChatInput.svelte @@ -347,6 +347,10 @@ transition-duration: 0.5s; } + :global(.is-mobile) #user-instruction-button { + max-height: 2rem; + } + #user-instruction-button.instruction-active { box-shadow: 0px 0px 4px 1px var(--color-accent); } @@ -374,6 +378,10 @@ white-space: pre-wrap; } + :global(.is-mobile) #input-field { + align-content: end; + } + #input-field:focus { border-color: var(--color-accent); box-shadow: 0px 0px 4px 1px var(--color-accent); @@ -416,6 +424,10 @@ transition-duration: 0.5s; } + :global(.is-mobile) #edit-mode-button { + max-height: 2rem; + } + #submit-button { grid-row: 3; grid-column: 8; @@ -427,6 +439,10 @@ background-color: var(--interactive-accent); } + :global(.is-mobile) #submit-button { + max-height: 2rem; + } + #submit-button:not(:disabled):hover { cursor: pointer; background-color: var(--interactive-accent-hover); diff --git a/Components/ChatSearchResults.svelte b/Components/ChatSearchResults.svelte index f58eb20..5334168 100644 --- a/Components/ChatSearchResults.svelte +++ b/Components/ChatSearchResults.svelte @@ -1,11 +1,11 @@