Skip to content

Commit

Permalink
refac: styling
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbck committed May 19, 2024
1 parent 9ff7403 commit ae35c68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/chat/Messages/CompareMessages.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@
<!-- svelte-ignore a11y-click-events-have-key-events -->

<div
class=" snap-center min-w-80 w-full max-w-full m-1 outline outline-1 {history.messages[
class=" snap-center min-w-80 w-full max-w-full m-1 border {history.messages[
currentMessageId
].model === model
? 'outline-gray-100 dark:outline-gray-700 outline-2'
: 'outline-gray-50 dark:outline-gray-850 '} transition p-5 rounded-3xl"
? 'border-gray-100 dark:border-gray-700 border-[1.5px]'
: 'border-gray-50 dark:border-gray-850 '} transition p-5 rounded-3xl"
on:click={() => {
currentMessageId = groupedMessages[model].messages[groupedMessagesIdx[model]].id;

Expand Down

0 comments on commit ae35c68

Please sign in to comment.