Skip to content

Commit

Permalink
more compact button on top
Browse files Browse the repository at this point in the history
  • Loading branch information
KTibow authored Oct 26, 2024
1 parent 9daaac8 commit 78d6404
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Chat.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}
</script>

<button style:margin="0.5rem 0.5rem 0 0.5rem" on:click={() => (conversation = [])}>
<button on:click={() => (conversation = [])}>
<Icon icon={iconTrash} width="1.5rem" height="1.5rem" />
</button>
<div class="wrapper">
Expand Down Expand Up @@ -124,4 +124,7 @@
cursor: pointer;
}
button:nth-child(1) {
border-radius: 0 0.5rem 0.5rem 0;
}
</style>

0 comments on commit 78d6404

Please sign in to comment.