mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 12:55:19 +00:00
refac: styling
This commit is contained in:
parent
bbedc50f00
commit
7ca35068a6
1 changed files with 2 additions and 1 deletions
|
|
@ -50,6 +50,7 @@
|
|||
import FileItem from '$lib/components/common/FileItem.svelte';
|
||||
import FollowUps from './ResponseMessage/FollowUps.svelte';
|
||||
import { fade } from 'svelte/transition';
|
||||
import { flyAndScale } from '$lib/utils/transitions';
|
||||
|
||||
interface MessageType {
|
||||
id: string;
|
||||
|
|
@ -1429,7 +1430,7 @@
|
|||
{/if}
|
||||
|
||||
{#if isLastMessage && message.done && !readOnly && (message?.followUps ?? []).length > 0}
|
||||
<div class="mt-2.5" in:fade={{ duration: 50 }}>
|
||||
<div class="mt-2.5" in:fade={{ duration: 100 }}>
|
||||
<FollowUps
|
||||
followUps={message?.followUps}
|
||||
onClick={(prompt) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue