Fix scrollToBottom button container obstructing clicks on buttons beneath it

This commit is contained in:
josephrocca 2024-06-24 14:10:32 +08:00 committed by GitHub
parent 9e4dd4b86f
commit 82b44740db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -291,9 +291,9 @@
<div class="flex flex-col max-w-6xl px-2.5 md:px-6 w-full">
<div class="relative">
{#if autoScroll === false && messages.length > 0}
<div class=" absolute -top-12 left-0 right-0 flex justify-center z-30">
<div class=" absolute -top-12 left-0 right-0 flex justify-center z-30 pointer-events-none">
<button
class=" bg-white border border-gray-100 dark:border-none dark:bg-white/20 p-1.5 rounded-full"
class=" bg-white border border-gray-100 dark:border-none dark:bg-white/20 p-1.5 rounded-full pointer-events-auto"
on:click={() => {
autoScroll = true;
scrollToBottom();