z-index adjustments

This commit is contained in:
Gavin McDonald
2025-04-24 18:08:23 -04:00
parent 6e2247d6f3
commit f6749f3146
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ export default function Notes({ gameData: { dmID, cards, settings }, show }: Not
return (
<div
className={`fixed bottom-4 right-4 z-50 transition-all duration-250 ${show ? 'pointer-events-auto opacity-100' : 'pointer-events-none opacity-0'}`}
className={`fixed bottom-4 right-4 z-25 transition-all duration-250 ${show ? 'pointer-events-auto opacity-100' : 'pointer-events-none opacity-0'}`}
>
<button
className={`text-yellow-400 hover:text-yellow-300 p-2 transition-all duration-250 cursor-pointer ${showNotes ? 'pointer-events-none opacity-0' : 'pointer-events-auto opacity-100'}`}