Skip to content

Commit

Permalink
✴ Update: toast z-index
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaByte authored Jan 11, 2024
1 parent 854a4fa commit 051dd4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions islands/Toast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Toast() {
return (
<>
{ToastSignal.value.show && (
<div class="toast text-2xl text-center toast-start mr-4 animation-toast">
<div class="toast text-2xl text-center toast-start mr-4 animation-toast z-[100]">
{
ToastSignal.value.type === "success" ? (
<div class="alert alert-success">
Expand Down Expand Up @@ -43,4 +43,4 @@ export default function Toast() {
)}
</>
);
}
}

0 comments on commit 051dd4e

Please sign in to comment.