Skip to content

Commit

Permalink
Fix Toast jiggle when last toast remains (#1579)
Browse files Browse the repository at this point in the history
* Use CSS gap instead of tailwind spacing

* include changeset

* Fix cccidently putting changeset in wrong spot
  • Loading branch information
saturnonearth committed May 26, 2023
1 parent bbbcfca commit 8b6efec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/hip-dancers-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/skeleton": patch
---

Fix Toast jiggle when last toast remain
2 changes: 1 addition & 1 deletion packages/skeleton/src/lib/utilities/Toast/Toast.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
// Base Classes
const cWrapper = 'flex fixed top-0 left-0 right-0 bottom-0 pointer-events-none';
const cSnackbar = 'flex flex-col space-y-2';
const cSnackbar = 'flex flex-col gap-y-2';
const cToast = 'flex justify-between items-center pointer-events-auto';
const cToastActions = 'flex items-center space-x-2';
Expand Down

0 comments on commit 8b6efec

Please sign in to comment.