Skip to content

Commit

Permalink
Fix gap between multiple toasts
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtitherington committed Oct 29, 2023
1 parent 662316f commit 3e7a35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/toasts/ToastContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ToastContainer = () => {
<div
onMouseEnter={startPause}
onMouseLeave={endPause}
className="fixed bottom-4 right-4 space-y-2 flex flex-col-reverse">
className="fixed bottom-4 right-4 gap-2 flex flex-col-reverse">
{toasts
.filter(toast => toast.visible)
.map(toast => {
Expand Down

0 comments on commit 3e7a35e

Please sign in to comment.