You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried removing the default scale-up effect by passing in the !important to tailwind classes, it was able to remove the scale-up transition, but not the hover affect.
The text was updated successfully, but these errors were encountered:
@nukeop thanks for the reply. I tried it by adding "!hover:cursor-default", which is the equivalent of "cursor: default!important", but it's still giving me the pointer cursor. Any other ideas? Or maybe could y'all add a fix to where if there is no "href" passed in then it should be like a default cursor?
<TaggedContentCard className="!transition-none !cursor-default !transform-none" key={project.id} thumbnail={project.thumbnail} title={project.title} description={project.subtitle} tags={project.links.map((link) => ( <a target="_blank" href={link.link}> {link.tag} </a> ))} />
I tried removing the default scale-up effect by passing in the !important to tailwind classes, it was able to remove the scale-up transition, but not the hover affect.
The text was updated successfully, but these errors were encountered: