Skip to content

Commit

Permalink
fix(components): Fix icons z-index
Browse files Browse the repository at this point in the history
Icons previously were displayed under cursor hover
  • Loading branch information
alimoezzi committed Mar 21, 2022
1 parent fb6968e commit 2741cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Cursor/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export function Cursor({
className='relative flex flex-col items-center group ml-3'
onMouseEnter={() => hover(true)}
onMouseLeave={() => hover(false)}>
<div className='hover:stroke-white stroke-zinc-600'>
<div className='hover:stroke-white z-20 stroke-zinc-600'>
<UseAnimations
animation={icon}
size={fontSize}
Expand Down

0 comments on commit 2741cc2

Please sign in to comment.