Skip to content

Commit

Permalink
Notify: fix z-index value (viamrobotics#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
micheal-parks authored Jul 25, 2024
1 parent 4d49c75 commit 4427cc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@viamrobotics/prime-core",
"version": "0.0.135",
"version": "0.0.136",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $: pageIsVisible.set(visibilityState === 'visible');
<div
role="alert"
aria-label="Notifications"
class="pointer-events-none fixed bottom-auto left-auto right-0 top-6 z-[9999] m-0 p-0 sm:right-6"
class="pointer-events-none fixed bottom-auto left-auto right-0 top-6 m-0 p-0 sm:right-6"
>
<ul>
{#each $notifications as { id, pause, resume, ...notification } (id)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export let dismiss: () => unknown;

<Banner
exitable
cx="pointer-events-auto relative mb-2 w-screen sm:w-[360px]"
cx="pointer-events-auto relative z-[9999] mb-2 w-screen sm:w-[360px]"
on:close={dismiss}
progress={$progress}
{variant}
Expand Down

0 comments on commit 4427cc7

Please sign in to comment.