Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jlvihv committed Dec 1, 2024
1 parent 10703a7 commit 3d357c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Ollama KISS UI",
"description": "A simple, stupid UI for Ollama. Keep It Simple, Stupid (KISS).",
"version": "0.2",
"version": "0.3",
"manifest_version": 3,
"action": {
"default_icon": "kiss.png"
Expand Down
7 changes: 5 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,10 @@
<div class="flex h-screen">
<!-- Sidebar -->
<div class="flex w-64 flex-col bg-base-200 p-4">
<button class="btn btn-primary mb-4 w-full" onclick={createNewChat}>
<button
class="btn mb-4 w-full bg-blue-600/80 hover:bg-blue-600"
onclick={createNewChat}
>
<i class="icon-[mdi--plus]"></i>
New Chat
</button>
Expand Down Expand Up @@ -567,7 +570,7 @@
<button
class="btn min-w-[6rem] border {loading
? 'btn-error hover:bg-error/90'
: 'btn-primary'}"
: 'bg-blue-600/80 hover:bg-blue-600'}"
onclick={loading ? stopGeneration : sendMessage}
disabled={!message && !loading}
aria-label={loading ? "Stop generation" : "Send message"}
Expand Down

0 comments on commit 3d357c2

Please sign in to comment.