mirror of
https://github.com/open-webui/open-webui
synced 2025-02-20 20:07:28 +00:00
fix: styling
This commit is contained in:
parent
d6fc0ccf65
commit
94502d6494
@ -356,7 +356,11 @@
|
||||
{#if status?.action === 'web_search' && status?.urls}
|
||||
<WebSearchResults {status}>
|
||||
<div class="flex flex-col justify-center -space-y-0.5">
|
||||
<div class="shimmer text-base line-clamp-1 text-wrap">
|
||||
<div
|
||||
class="{status?.done === false
|
||||
? 'shimmer'
|
||||
: ''} text-base line-clamp-1 text-wrap"
|
||||
>
|
||||
{status?.description}
|
||||
</div>
|
||||
</div>
|
||||
@ -364,7 +368,9 @@
|
||||
{:else}
|
||||
<div class="flex flex-col justify-center -space-y-0.5">
|
||||
<div
|
||||
class="shimmer text-gray-500 dark:text-gray-500 text-base line-clamp-1 text-wrap"
|
||||
class="{status?.done === false
|
||||
? 'shimmer'
|
||||
: ''} text-gray-500 dark:text-gray-500 text-base line-clamp-1 text-wrap"
|
||||
>
|
||||
{status?.description}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user