mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
fix: styling
This commit is contained in:
parent
bfdefbf6e7
commit
6f6be2c03f
@ -67,7 +67,7 @@
|
|||||||
<div class="flex flex-col md:flex-row w-full px-5 py-4 md:space-x-4 dark:text-gray-200">
|
<div class="flex flex-col md:flex-row w-full px-5 py-4 md:space-x-4 dark:text-gray-200">
|
||||||
<div class=" flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6">
|
<div class=" flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6">
|
||||||
{#if chats.length > 0}
|
{#if chats.length > 0}
|
||||||
<div class="text-left text-sm w-full mb-4">
|
<div class="text-left text-sm w-full mb-4 h-[22rem] overflow-y-scroll">
|
||||||
<div class="relative overflow-x-auto">
|
<div class="relative overflow-x-auto">
|
||||||
<table class="w-full text-sm text-left text-gray-500 dark:text-gray-400 table-auto">
|
<table class="w-full text-sm text-left text-gray-500 dark:text-gray-400 table-auto">
|
||||||
<thead
|
<thead
|
||||||
@ -80,7 +80,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{#each chats as chat, idx}
|
{#each [...chats, ...chats, ...chats] as chat, idx}
|
||||||
<tr
|
<tr
|
||||||
class="bg-white {idx !== chats.length - 1 &&
|
class="bg-white {idx !== chats.length - 1 &&
|
||||||
'border-b'} dark:bg-gray-900 dark:border-gray-850 text-xs"
|
'border-b'} dark:bg-gray-900 dark:border-gray-850 text-xs"
|
||||||
@ -93,8 +93,10 @@
|
|||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class=" px-3 py-1 hidden md:flex">
|
<td class=" px-3 py-1 hidden md:flex h-[2.5rem]">
|
||||||
{dayjs(chat.created_at * 1000).format($i18n.t('MMMM DD, YYYY HH:mm'))}
|
<div class="my-auto">
|
||||||
|
{dayjs(chat.created_at * 1000).format($i18n.t('MMMM DD, YYYY HH:mm'))}
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="px-3 py-1 text-right">
|
<td class="px-3 py-1 text-right">
|
||||||
|
Loading…
Reference in New Issue
Block a user