forked from open-webui/open-webui
feat: scroll to bottom button added
This commit is contained in:
parent
3718cfb667
commit
7785af9de2
1 changed files with 182 additions and 155 deletions
|
@ -1331,11 +1331,37 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="fixed bottom-0 w-full">
|
<div class="fixed bottom-0 w-full">
|
||||||
<div class=" bg-gradient-to-t from-white dark:from-gray-800 from-40% pt-5">
|
<div class=" pt-5">
|
||||||
<div class="max-w-3xl px-2.5 pt-2.5 pb-2 -mb-0.5 mx-auto inset-x-0">
|
<div class="max-w-3xl px-2.5 pt-2.5 -mb-0.5 mx-auto inset-x-0">
|
||||||
{#if messages.length == 0 && suggestions !== 'false'}
|
{#if messages.length == 0 && suggestions !== 'false'}
|
||||||
<Suggestions {submitPrompt} />
|
<Suggestions {submitPrompt} />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
{#if autoScroll === false}
|
||||||
|
<div class=" flex justify-center mb-4">
|
||||||
|
<button
|
||||||
|
class=" bg-white/20 p-1.5 rounded-full"
|
||||||
|
on:click={() => {
|
||||||
|
window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 20 20"
|
||||||
|
fill="currentColor"
|
||||||
|
class="w-5 h-5"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
d="M10 3a.75.75 0 01.75.75v10.638l3.96-4.158a.75.75 0 111.08 1.04l-5.25 5.5a.75.75 0 01-1.08 0l-5.25-5.5a.75.75 0 111.08-1.04l3.96 4.158V3.75A.75.75 0 0110 3z"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="bg-gradient-to-t from-white dark:from-gray-800 from-40% pb-2">
|
||||||
<form
|
<form
|
||||||
class=" flex relative w-full"
|
class=" flex relative w-full"
|
||||||
on:submit|preventDefault={() => {
|
on:submit|preventDefault={() => {
|
||||||
|
@ -1509,6 +1535,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in a new issue