Skip to content

Commit

Permalink
fix: tour popup above cursor (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSahitya authored Jul 18, 2024
1 parent 383fdb3 commit 7b62896
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/styles/shepherdStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@import "tailwindcss/utilities";

.shepherd-element {
@apply bg-white rounded-xl border-4 border-primary shadow-lg p-1 transform transition-transform duration-300 scale-100;
@apply bg-white rounded-xl border-4 border-primary shadow-lg p-1 transform transition-transform duration-300 scale-100 z-custom;
}

.shepherd-element:hover {
Expand Down Expand Up @@ -46,3 +46,7 @@
.shepherd-button:active {
@apply transform translate-y-0;
}

.shepherd-modal-overlay-container {
@apply z-50
}
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ module.exports = {
darkMode: "class",
theme: {
extend: {
zIndex: {
custom: 900,
},
colors: {
primary: "#f02e65",
onhover: "#F97AC0",
Expand Down

0 comments on commit 7b62896

Please sign in to comment.