We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1699cdd commit 4f8255aCopy full SHA for 4f8255a
1 file changed
src/app/components/ResumeForm/index.tsx
@@ -34,8 +34,8 @@ export const ResumeForm = () => {
34
return (
35
<div
36
className={cx(
37
- "flex justify-center scrollbar-thin scrollbar-track-gray-100 scrollbar-thumb-gray-100 md:h-[calc(100vh-var(--top-nav-bar-height))] md:justify-end md:overflow-y-scroll",
38
- isHover && "!scrollbar-thumb-gray-200"
+ "flex justify-center scrollbar-thin scrollbar-track-gray-100 md:h-[calc(100vh-var(--top-nav-bar-height))] md:justify-end md:overflow-y-scroll",
+ isHover ? "scrollbar-thumb-gray-200" : "scrollbar-thumb-gray-100"
39
)}
40
onMouseOver={() => setIsHover(true)}
41
onMouseLeave={() => setIsHover(false)}
0 commit comments