"examples/git@developer.sourcefind.cn:OpenDAS/nni.git" did not exist on "a5764016739676a55e5e10ae88e081ebf94d2a38"
Commit 595ebd11 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac: styling

parent 1157b8e1
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
{#each prompts as prompt, promptIdx} {#each prompts as prompt, promptIdx}
<div class="shrink-0"> <div class="shrink-0">
<button <button
class="flex flex-1 shrink-0 w-60 justify-between h-full px-4 py-2.5 bg-gray-50 hover:bg-gray-100 dark:bg-gray-850 dark:hover:bg-gray-800 rounded-2xl transition group" class="flex flex-1 shrink-0 w-64 justify-between h-full px-5 py-3 bg-gray-50 hover:bg-gray-100 dark:bg-gray-850 dark:hover:bg-gray-800 rounded-3xl transition group"
on:click={() => { on:click={() => {
submitPrompt(prompt.content); submitPrompt(prompt.content);
}} }}
......
...@@ -291,6 +291,7 @@ ...@@ -291,6 +291,7 @@
chatTextAreaElement.style.height = ''; chatTextAreaElement.style.height = '';
chatTextAreaElement.style.height = Math.min(chatTextAreaElement.scrollHeight, 200) + 'px'; chatTextAreaElement.style.height = Math.min(chatTextAreaElement.scrollHeight, 200) + 'px';
chatTextAreaElement.focus();
} }
}} }}
/> />
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment