mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
refac: styling
This commit is contained in:
parent
bcf76dfa74
commit
4b4583df62
1 changed files with 3 additions and 3 deletions
|
|
@ -60,14 +60,14 @@
|
||||||
{#each citations as citation, idx}
|
{#each citations as citation, idx}
|
||||||
<button
|
<button
|
||||||
id={`source-${id}-${idx + 1}`}
|
id={`source-${id}-${idx + 1}`}
|
||||||
class="no-toggle outline-hidden flex dark:text-gray-300 bg-white dark:bg-gray-900 rounded-xl gap-2 items-center"
|
class="no-toggle outline-hidden flex dark:text-gray-300 bg-white dark:bg-gray-900 rounded-xl gap-1.5 items-center"
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
showCitationModal = true;
|
showCitationModal = true;
|
||||||
selectedCitation = citation;
|
selectedCitation = citation;
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div class="bg-gray-50 dark:bg-gray-800 rounded-full size-5">
|
<div class=" font-medium">
|
||||||
{idx + 1}
|
{idx + 1}.
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="flex-1 truncate text-black/60 hover:text-black dark:text-white/60 dark:hover:text-white transition text-left"
|
class="flex-1 truncate text-black/60 hover:text-black dark:text-white/60 dark:hover:text-white transition text-left"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue