|
@@ -376,14 +376,15 @@
|
|
|
<DropdownMenu.Content
|
|
|
class=" z-40 {$mobile
|
|
|
? `w-full`
|
|
|
- : `${className}`} max-w-[calc(100vw-1rem)] justify-start rounded-xl bg-white dark:bg-gray-850 dark:text-white shadow-lg outline-hidden"
|
|
|
+ : `${className}`} max-w-[calc(100vw-1rem)] justify-start rounded-2xl bg-white dark:bg-gray-850 dark:text-white shadow-lg outline-hidden"
|
|
|
transition={flyAndScale}
|
|
|
side={$mobile ? 'bottom' : 'bottom-start'}
|
|
|
- sideOffset={3}
|
|
|
+ sideOffset={2}
|
|
|
+ alignOffset={-1}
|
|
|
>
|
|
|
<slot>
|
|
|
{#if searchEnabled}
|
|
|
- <div class="flex items-center gap-2.5 px-4 mt-3.5 mb-1.5">
|
|
|
+ <div class="flex items-center gap-2.5 px-4 mt-3.5 mb-[5px]">
|
|
|
<Search className="size-4" strokeWidth="2.5" />
|
|
|
|
|
|
<input
|
|
@@ -428,7 +429,7 @@
|
|
|
}}
|
|
|
>
|
|
|
<div
|
|
|
- class="flex gap-1 w-fit text-center text-sm font-medium rounded-full bg-transparent px-1.5 pb-0.5"
|
|
|
+ class="flex gap-1 w-fit text-center text-sm font-medium rounded-full bg-transparent px-1.5"
|
|
|
bind:this={tagsContainerElement}
|
|
|
>
|
|
|
{#if items.find((item) => item.model?.connection_type === 'local') || items.find((item) => item.model?.connection_type === 'external') || items.find((item) => item.model?.direct) || tags.length > 0}
|
|
@@ -543,7 +544,7 @@
|
|
|
placement="top-start"
|
|
|
>
|
|
|
<button
|
|
|
- class="flex w-full font-medium line-clamp-1 select-none items-center rounded-button py-2 pl-3 pr-1.5 text-sm text-gray-700 dark:text-gray-100 outline-hidden transition-all duration-75 hover:bg-gray-100 dark:hover:bg-gray-800 rounded-lg cursor-pointer data-highlighted:bg-muted"
|
|
|
+ class="flex w-full font-medium line-clamp-1 select-none items-center rounded-button py-2 pl-3 pr-1.5 text-sm text-gray-700 dark:text-gray-100 outline-hidden transition-all duration-75 hover:bg-gray-100 dark:hover:bg-gray-800 rounded-xl cursor-pointer data-highlighted:bg-muted"
|
|
|
on:click={() => {
|
|
|
pullModelHandler();
|
|
|
}}
|
|
@@ -557,7 +558,7 @@
|
|
|
|
|
|
{#each Object.keys($MODEL_DOWNLOAD_POOL) as model}
|
|
|
<div
|
|
|
- class="flex w-full justify-between font-medium select-none rounded-button py-2 pl-3 pr-1.5 text-sm text-gray-700 dark:text-gray-100 outline-hidden transition-all duration-75 rounded-lg cursor-pointer data-highlighted:bg-muted"
|
|
|
+ class="flex w-full justify-between font-medium select-none rounded-button py-2 pl-3 pr-1.5 text-sm text-gray-700 dark:text-gray-100 outline-hidden transition-all duration-75 rounded-xl cursor-pointer data-highlighted:bg-muted"
|
|
|
>
|
|
|
<div class="flex">
|
|
|
<div class="-ml-2 mr-2.5 translate-y-0.5">
|