mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 13:25:20 +00:00
refac: styling
This commit is contained in:
parent
f97f6601f7
commit
1a9dee50ce
1 changed files with 5 additions and 1 deletions
|
|
@ -669,7 +669,7 @@
|
|||
<textarea
|
||||
id="chat-textarea"
|
||||
bind:this={chatTextAreaElement}
|
||||
class="scrollbar-hidden bg-gray-50 dark:bg-gray-850 dark:text-gray-100 outline-none w-full py-3 px-2 rounded-xl resize-none h-[48px]"
|
||||
class="scrollbar-hidden bg-gray-50 dark:bg-gray-850 dark:text-gray-100 outline-none w-full py-3 px-1 rounded-xl resize-none h-[48px]"
|
||||
placeholder={chatInputPlaceholder !== ''
|
||||
? chatInputPlaceholder
|
||||
: $i18n.t('Send a Message')}
|
||||
|
|
@ -870,6 +870,10 @@
|
|||
<Tooltip content={$i18n.t('Call')}>
|
||||
<button
|
||||
class=" text-gray-600 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-850 transition rounded-full p-2 self-center"
|
||||
type="button"
|
||||
on:click={() => {
|
||||
console.log('call');
|
||||
}}
|
||||
>
|
||||
<Headphone className="size-6" />
|
||||
</button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue