-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(admin-ui): Enhanced 'activity-drawer' visibility with z-index adjustment #5315
Conversation
This pull request focuses on improving the visibility of the 'activity-drawer' component by applying a z-index of 1 (z-1). The z-index ensures that the 'activity-drawer' consistently appears above other page elements, enhancing its prominence and ensuring a better user experience.
🦋 Changeset detectedLatest commit: 4e03ab9 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@ram-you is attempting to deploy a commit to the medusajs Team on Vercel. A member of the Team first needs to authorize it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @ram-you
Thanks for the PR!
z-1
is not a valid Tailwind class name, it goes from z-0
- z-100
in increments of 10. Alternatively, you could use an arbitrary value of z-[1]
.
packages/admin-ui/ui/src/components/organisms/activity-drawer/index.tsx
Outdated
Show resolved
Hide resolved
Change non existing 'z-1' to arbitrary value 'z-[1]'
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 3 Ignored Deployments
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(approving to enable automerge)
This pull request focuses on improving the visibility of the 'activity-drawer' component by applying a z-index of 1 (z-1). The z-index ensures that the 'activity-drawer' consistently appears above other page elements, enhancing its prominence and ensuring a better user experience.