1
0
Fork 0

moderate the nav arrow bouncing

This commit is contained in:
Enoch Riese 2023-06-20 17:18:01 -05:00
parent e1be833dfd
commit bd0a2f1889

View file

@ -59,7 +59,10 @@ const NavIcons = ({ setView, setDense, dense, view }) => {
extraClasses="text-success bg-neutral hover:bg-success hover:text-neutral"
>
{dense ? (
<RightIcon className={`${iconSize} group-hover:animate-bounce-right`} stroke={4} />
<RightIcon
className={`${iconSize} group-hover:animate-[bounceright_1s_infinite] animate-[bounceright_1s_5]`}
stroke={4}
/>
) : (
<LeftIcon className={`${iconSize} animate-bounce-right`} stroke={4} />
)}